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 {
|
2023-07-21 18:44:14 +03:00
|
|
|
@apply clr-border rounded
|
2023-07-15 17:46:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
@apply text-zinc-200 bg-gray-900
|
|
|
|
}
|
2023-07-20 17:11:03 +03:00
|
|
|
|
2023-07-21 18:44:14 +03:00
|
|
|
.clr-border {
|
|
|
|
@apply border-gray-300 dark:border-gray-400
|
|
|
|
}
|
|
|
|
|
|
|
|
.clr-app {
|
|
|
|
@apply bg-gray-50 dark:bg-gray-800
|
|
|
|
}
|
|
|
|
|
|
|
|
.clr-bg-pop {
|
|
|
|
@apply bg-gray-100 dark:bg-gray-600
|
|
|
|
}
|
|
|
|
|
2023-07-21 01:50:57 +03:00
|
|
|
.clr-nav {
|
2023-07-21 18:44:14 +03:00
|
|
|
@apply border-gray-400 dark:border-gray-300 bg-white dark:bg-gray-700
|
|
|
|
}
|
|
|
|
|
|
|
|
.clr-footer {
|
|
|
|
@apply text-gray-600 bg-white border-gray-400 dark:bg-gray-700 dark:border-gray-300 dark:text-gray-300
|
|
|
|
}
|
|
|
|
|
|
|
|
.clr-tab {
|
|
|
|
@apply text-gray-600 dark:text-zinc-200 hover:bg-gray-300 dark:hover:bg-gray-400
|
2023-07-21 01:50:57 +03:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2023-07-21 01:50:57 +03:00
|
|
|
.clr-btn-primary {
|
2023-07-21 18:44:14 +03:00
|
|
|
@apply text-white 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
|
|
|
|
}
|
|
|
|
|
|
|
|
.clr-btn-default {
|
|
|
|
@apply text-gray-500 dark:text-zinc-200 dark:disabled:text-zinc-400 disabled:text-gray-400 bg-gray-100 hover:bg-gray-300 dark:bg-gray-600 dark:hover:bg-gray-400
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Transparent button */
|
|
|
|
.clr-btn-clear {
|
|
|
|
@apply hover:bg-gray-300 dark:hover:bg-gray-400
|
|
|
|
}
|
|
|
|
|
|
|
|
.clr-checkbox {
|
|
|
|
@apply bg-white dark:bg-gray-900 checked:bg-blue-700 dark:checked:bg-orange-500
|
2023-07-21 01:50:57 +03:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|