2022-01-13 17:07:44 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2022-02-18 08:56:42 +00:00
|
|
|
:root {
|
|
|
|
|
color-scheme: dark light;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.theme-default {
|
|
|
|
|
--color-primary: 37 194 160;
|
|
|
|
|
--color-secondary: 48 56 70;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-08 15:11:13 +00:00
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2022-02-18 08:56:42 +00:00
|
|
|
font-family: "Manrope", sans-serif;
|
2022-01-08 15:11:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|