2023-07-19 22:11:34 +01:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2023-07-25 23:27:01 +01:00
|
|
|
|
2023-07-27 00:05:47 +01:00
|
|
|
@import "typography.css";
|
2023-07-30 11:19:12 +01:00
|
|
|
@import "components/cards.css";
|
|
|
|
@import "components/steps.css";
|
2023-07-25 23:27:01 +01:00
|
|
|
|
|
|
|
html {
|
|
|
|
@apply text-base antialiased;
|
|
|
|
font-feature-settings: "rlig" 1, "calt" 1, "ss01" 1;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2023-07-30 21:50:41 +01:00
|
|
|
@apply w-full bg-white dark:bg-dark dark:text-gray-100;
|
2023-07-25 23:27:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
:root {
|
|
|
|
--primary-hue: 212deg;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
--primary-hue: 204deg;
|
|
|
|
}
|