ConceptPortal-public/rsconcept/frontend/src/index.css

49 lines
926 B
CSS
Raw Normal View History

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
.clr-nav {
@apply border-gray-400 dark:border-gray-300 bg-white dark:bg-gray-700 rounded-none
}
2023-07-21 00:09:05 +03:00
.clr-hover {
@apply hover:bg-gray-50 hover:text-gray-700 dark:hover:text-white dark:hover:bg-gray-500
}
.clr-btn-primary {
@apply bg-blue-400 hover:bg-blue-600 dark:bg-orange-600 dark:hover:bg-orange-400 disabled:bg-gray-400 dark:disabled:bg-gray-400
}
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
}