2023-07-30 11:19:12 +01:00
|
|
|
.steps h3 {
|
|
|
|
counter-increment: step;
|
|
|
|
|
|
|
|
&:before {
|
2024-02-20 17:59:31 -05:00
|
|
|
@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;
|
2024-03-05 11:17:29 +03:30
|
|
|
@apply hx-mt-[3px] ltr:hx-ml-[-41px] rtl:hx-mr-[-44px];
|
2023-07-30 11:19:12 +01:00
|
|
|
content: counter(step);
|
|
|
|
}
|
|
|
|
}
|
2024-03-05 11:17:29 +03:30
|
|
|
|
|
|
|
:lang(fa) .steps h3 {
|
|
|
|
&:before {
|
|
|
|
content: counter(step, persian);
|
|
|
|
}
|
|
|
|
}
|