You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
323 B
15 lines
323 B
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
* {
|
|
@apply transition-[background-color] duration-300 ease-in-out;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.icon-base {
|
|
@apply h-6 w-6 text-slate-700 hover:scale-110 hover:pb-0.5 hover:text-accent dark:text-rose-50 dark:hover:text-accent-dark;
|
|
}
|
|
}
|
|
|