2023-07-15 17:46:19 +03:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
.rdt_TableCell{
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
2023-07-20 17:11:03 +03:00
|
|
|
[data-color-scheme="dark"] {
|
|
|
|
color-scheme: dark;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-color-scheme="light"] {
|
|
|
|
color-scheme: light;
|
|
|
|
}
|
|
|
|
|
2023-07-15 17:46:19 +03:00
|
|
|
@layer components {
|
|
|
|
.border {
|
|
|
|
@apply border-gray-300 rounded dark:border-gray-400
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
@apply text-zinc-200 bg-gray-900
|
|
|
|
}
|
2023-07-20 17:11:03 +03:00
|
|
|
|
|
|
|
.text-red {
|
|
|
|
@apply text-red-400 dark:text-red-600
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-green {
|
|
|
|
@apply text-green-400 dark:text-green-500
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-primary {
|
|
|
|
@apply text-blue-600 dark:text-orange-400
|
|
|
|
}
|
2023-07-15 17:46:19 +03:00
|
|
|
}
|