We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad26d8a commit baa0f1aCopy full SHA for baa0f1a
app/globals.css
@@ -175,10 +175,23 @@ body {
175
counter-increment: onboarding-step;
176
}
177
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,
188
.onboarding-step h2::before {
189
content: "Step " counter(onboarding-step) ": ";
190
+ font-weight: inherit;
191
192
193
+.onboarding-step .step-heading[data-step-prefix]::before,
194
.onboarding-step h2[data-step-prefix]::before {
195
content: attr(data-step-prefix) counter(onboarding-step) ": ";
196
197
0 commit comments