2023-12-20 23:10:18 +01:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
@tailwind variants;
|
|
|
|
|
2023-05-03 12:28:02 +03:00
|
|
|
/*place global styles here */
|
2023-12-20 23:10:18 +01:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
@apply h-full overflow-hidden;
|
|
|
|
}
|
2024-03-01 12:40:09 +01:00
|
|
|
|
|
|
|
:root {
|
|
|
|
font-family: Inter, sans-serif;
|
|
|
|
font-feature-settings:
|
|
|
|
'liga' 1,
|
|
|
|
'calt' 1; /* fix for Chrome */
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports (font-variation-settings: normal) {
|
|
|
|
:root {
|
|
|
|
font-family: InterVariable, sans-serif;
|
|
|
|
}
|
|
|
|
}
|