You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
349 B
CSS
22 lines
349 B
CSS
![]()
2 years ago
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
@layer components {
|
||
|
.flex-c {
|
||
|
@apply flex justify-center items-center;
|
||
|
}
|
||
|
|
||
|
.flex-ac {
|
||
|
@apply flex justify-around items-center;
|
||
|
}
|
||
|
|
||
|
.flex-bc {
|
||
|
@apply flex justify-between items-center;
|
||
|
}
|
||
|
|
||
|
.navbar-bg-hover {
|
||
|
@apply dark:text-white dark:hover:!bg-[#242424];
|
||
|
}
|
||
|
}
|