Files
vitrify-me/apps/web/app/globals.css
2025-08-26 16:49:54 +04:00

27 lines
296 B
CSS

@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
html,
body {
max-width: 100vw;
overflow-x: hidden;
}
body {
color: var(--foreground);
background: var(--background);
}
* {
box-sizing: border-box;
}
a {
color: inherit;
text-decoration: none;
}