12 lines
228 B
SCSS
12 lines
228 B
SCSS
|
.counter-start-header-section {
|
||
|
counter-reset: headerSectionCounter;
|
||
|
}
|
||
|
|
||
|
.header-section {
|
||
|
counter-increment: headerSectionCounter;
|
||
|
|
||
|
&.header-section-counter::before {
|
||
|
content: counter(headerSectionCounter) ". ";
|
||
|
}
|
||
|
}
|