vl2-forge/app/global.css
Brian Beck 78acd2a63e Deploy
2024-10-23 19:35:49 -10:00

35 lines
581 B
CSS

:root {
--system-ui: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
/* Box sizing rules */
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Prevent font size inflation */
html {
-moz-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
margin: 0;
padding: 0;
}
body {
display: flex;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
flex-direction: column;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #699697;
}