2022-09-15 19:15:07 +02:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
2022-09-16 21:11:44 +02:00
|
|
|
@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;
|
|
|
|
}
|
|
|
|
|
2022-09-18 10:47:43 +02:00
|
|
|
.btn {
|
|
|
|
@apply bg-primary hover:bg-orange-700 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-disabled {
|
|
|
|
@apply bg-primary opacity-50 text-gray-900 font-bold px-3 py-1 shadow rounded transition-all hover:cursor-not-allowed;
|
|
|
|
}
|
|
|
|
|
2022-09-16 21:11:44 +02:00
|
|
|
.divider {
|
|
|
|
@apply w-full h-1 bg-neutral-250 dark:bg-neutral-850;
|
|
|
|
}
|
2022-09-19 17:10:22 +02:00
|
|
|
|
|
|
|
.checkbox {
|
|
|
|
@apply h-4 w-4 text-primary rounded dark:bg-neutral-700 bg-neutral-300 hover:cursor-pointer focus:ring-transparent focus:ring-offset-0 border-none
|
|
|
|
}
|
|
|
|
|
|
|
|
.input {
|
|
|
|
@apply bg-neutral-200 dark:bg-neutral-800 dark:text-gray-300 text-gray-900 shadow rounded border-none focus:ring-primary
|
|
|
|
}
|
2022-09-16 21:11:44 +02:00
|
|
|
}
|