mirror of
https://github.com/imfing/hextra.git
synced 2025-06-20 06:31:29 -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);
|
||||
}
|
||||
}
|
@ -3,7 +3,8 @@
|
||||
@tailwind utilities;
|
||||
|
||||
@import "typography.css";
|
||||
@import "cards.css";
|
||||
@import "components/cards.css";
|
||||
@import "components/steps.css";
|
||||
|
||||
html {
|
||||
@apply text-base antialiased;
|
||||
|
Reference in New Issue
Block a user