Files
zitadel/apps/login/styles/globals.css

28 lines
411 B
CSS
Raw Normal View History

2023-04-03 13:39:51 +02:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-04-19 10:37:35 +02:00
@layer base {
h1,
.ztdl-h1 {
@apply text-2xl;
}
2023-04-03 13:39:51 +02:00
2023-04-19 10:37:35 +02:00
.ztdl-p {
@apply text-sm;
}
2023-04-03 13:39:51 +02:00
}
2023-04-22 20:16:47 +02:00
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;
}