fix(css): remove leading zero to match stylelint #112

Merged
florent.lesaout merged 1 commits from fix/css-leading-0 into master 2024-12-10 16:36:08 +01:00
Showing only changes of commit 629a181e18 - Show all commits

View File

@ -14,7 +14,7 @@
&__wrapper { &__wrapper {
display: grid; display: grid;
grid-template-columns: 0.4fr 0.6fr; grid-template-columns: .4fr .6fr;
grid-template-rows: 1fr; grid-template-rows: 1fr;
grid-column-gap: 1.5rem; grid-column-gap: 1.5rem;
grid-row-gap: 0; grid-row-gap: 0;
@ -77,15 +77,15 @@
} }
h1 { h1 {
margin-bottom: 0.5em; margin-bottom: .5em;
} }
h2 { h2 {
margin-bottom: 0.5714em; margin-bottom: .5714em;
} }
h3 { h3 {
margin-bottom: 0.6666em; margin-bottom: .6666em;
} }
ul { ul {
@ -94,7 +94,7 @@
} }
li + li { li + li {
margin-top: 0.5em; margin-top: .5em;
} }
&:not(.member-contact)::before { &:not(.member-contact)::before {