Skip to content

Commit baa0f1a

Browse files
Update app/globals.css
Co-authored-by: seer-by-sentry[bot] <157164994+seer-by-sentry[bot]@users.noreply.github.com>
1 parent ad26d8a commit baa0f1a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

app/globals.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,23 @@ body {
175175
counter-increment: onboarding-step;
176176
}
177177

178+
/* CSS Counters for Onboarding Steps */
179+
.onboarding-steps {
180+
counter-reset: onboarding-step;
181+
}
182+
183+
.onboarding-step {
184+
counter-increment: onboarding-step;
185+
}
186+
187+
.onboarding-step .step-heading::before,
178188
.onboarding-step h2::before {
179189
content: "Step " counter(onboarding-step) ": ";
190+
font-weight: inherit;
180191
}
181192

193+
.onboarding-step .step-heading[data-step-prefix]::before,
182194
.onboarding-step h2[data-step-prefix]::before {
183195
content: attr(data-step-prefix) counter(onboarding-step) ": ";
184196
}
197+
}

0 commit comments

Comments
 (0)