forked from drowl87/hextra_mirror

* feat: add prefix to tailwind css classes * fix: remove unnecessary prefixes * fix: add missing prefix in other places * chore: regenerate hugo_stats.json * chore: run `npm run build:css` * chore: add `hx-` prefix to _index.fa.md * fix: lang switcher display issue * fix: add `hx-` prefix to showcase/index.fa.md * fix: lang switch param mistake
12 lines
376 B
CSS
12 lines
376 B
CSS
.steps h3 {
|
|
counter-increment: step;
|
|
|
|
&:before {
|
|
@apply hx-absolute hx-w-[33px] hx-h-[33px];
|
|
@apply hx-border-4 hx-border-white hx-bg-gray-100 dark:hx-border-dark dark:hx-bg-neutral-800;
|
|
@apply hx-rounded-full hx-text-neutral-400 hx-text-base hx-font-normal hx-text-center -hx-indent-px;
|
|
@apply hx-mt-[3px] hx-ml-[-41px];
|
|
content: counter(step);
|
|
}
|
|
}
|