Files
zitadel/apps/login/styles/globals.css
2023-04-22 20:16:47 +02:00

28 lines
411 B
CSS
Executable File

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1,
.ztdl-h1 {
@apply text-2xl;
}
.ztdl-p {
@apply text-sm;
}
}
html {
--background-color: #ffffff;
--dark-background-color: #000000;
}
.bg-background-light-600 {
background-color: var(--background-color);
}
.dark .dark\:bg-background-dark-600 {
background-color: var(--dark-background-color) !important;
}