3de089d6c7
Closes #8086
11 lines
228 B
SCSS
11 lines
228 B
SCSS
.counter-start-header-section {
|
|
counter-reset: headerSectionCounter;
|
|
}
|
|
|
|
.header-section {
|
|
counter-increment: headerSectionCounter;
|
|
|
|
&.header-section-counter::before {
|
|
content: counter(headerSectionCounter) ". ";
|
|
}
|
|
}
|