21 lines
450 B
CSS
21 lines
450 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer components {
|
|
.item-hover {
|
|
@apply p-3 cursor-pointer hover:bg-neutral-300 dark:hover:bg-neutral-700 transition-all;
|
|
}
|
|
|
|
.item {
|
|
@apply p-3;
|
|
}
|
|
|
|
.container {
|
|
@apply bg-neutral-200 dark:bg-neutral-800 dark:text-gray-300 text-gray-900 shadow rounded;
|
|
}
|
|
|
|
.divider {
|
|
@apply w-full h-1 bg-neutral-250 dark:bg-neutral-850;
|
|
}
|
|
} |