Update app.css

This commit is contained in:
Charles Teh
2025-07-03 21:21:45 +08:00
committed by GitHub
parent bc7a50ece2
commit 948504c260

View File

@@ -78,8 +78,36 @@ @layer base {
::file-selector-button {
border-color: var(--color-gray-200, currentColor);
}
@keyframes accordion-down {
from {
height: 0;
}
to {
height: var(--radix-accordion-content-height);
}
}
@keyframes accordion-up {
from {
height: var(--radix-accordion-content-height);
}
to {
height: 0;
}
}
}
@utility animate-accordion-down {
animation: accordion-down 0.2s ease-out;
}
@utility animate-accordion-up {
animation: accordion-up 0.2s ease-out;
}
:root {
--background: oklch(1 0 0);
--foreground: oklch(0.145 0 0);