feat: add steps component

chore: rename breadcrumb-delimiter to chevron-right
This commit is contained in:
Xin
2023-07-30 11:19:12 +01:00
parent 080e6cbb7f
commit 8ed4573422
7 changed files with 58 additions and 3 deletions

View 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);
}
}

View File

@ -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;