mirror of
https://github.com/imfing/hextra.git
synced 2025-07-01 21:57:20 -04:00
feat: add steps component
chore: rename breadcrumb-delimiter to chevron-right
This commit is contained in:
11
assets/css/components/steps.css
Normal file
11
assets/css/components/steps.css
Normal file
@ -0,0 +1,11 @@
|
||||
.steps h3 {
|
||||
counter-increment: step;
|
||||
|
||||
&:before {
|
||||
@apply absolute w-[33px] h-[33px];
|
||||
@apply border-4 border-white bg-gray-100 dark:border-dark dark:bg-neutral-800;
|
||||
@apply rounded-full text-neutral-400 text-base font-normal text-center -indent-px;
|
||||
@apply mt-[3px] ml-[-41px];
|
||||
content: counter(step);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user