calendar base component

This commit is contained in:
Julian Krauser 2024-10-06 12:02:39 +02:00
parent f453bdc7d3
commit 85289069ba
5 changed files with 170 additions and 3 deletions

View file

@ -56,7 +56,7 @@ body {
@apply w-full h-full overflow-hidden flex flex-col;
}
button:not([headlessui]),
button:not([headlessui]):not([class*="fc"]),
a[button]:not([headlessui]) {
@apply relative box-border h-10 w-full flex justify-center py-2 px-4 text-sm font-medium rounded-md focus:outline-none focus:ring-0;
}
@ -91,3 +91,10 @@ input[disabled],
textarea[disabled] {
@apply opacity-75 pointer-events-none;
}
.fc-button-primary {
@apply !bg-primary !border-primary !outline-none !ring-0 hover:!bg-red-700 hover:!border-red-700;
}
.fc-button-active {
@apply !bg-red-500 !border-red-500;
}