feat: enhance login page with FAQ section and improved styling

This commit is contained in:
2026-01-29 23:40:48 -06:00
parent fa28f13a45
commit 47b4f3315f
4 changed files with 111 additions and 14 deletions
+24
View File
@@ -55,6 +55,8 @@
--color-status-orange: var(--status-orange);
--color-status-gray: var(--status-gray);
--font-sans: "Inter Variable", ui-sans-serif, system-ui, sans-serif;
--animate-accordion-down: accordion-down 200ms ease-out;
--animate-accordion-up: accordion-up 200ms ease-out;
}
body {
@@ -198,6 +200,28 @@ body::-webkit-scrollbar {
background: rgba(255, 255, 255, 0.4);
}
@keyframes accordion-down {
from {
height: 0;
opacity: 0;
}
to {
height: var(--bits-accordion-content-height);
opacity: 1;
}
}
@keyframes accordion-up {
from {
height: var(--bits-accordion-content-height);
opacity: 1;
}
to {
height: 0;
opacity: 0;
}
}
@keyframes pulse {
0%,
100% {