SAE15_2022/assets/css/style.css

18 lines
253 B
CSS
Raw Normal View History

html {
height: 100%;
box-sizing: border-box;
}
body {
height: 100%;
padding: 0;
margin: 0;
min-height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
}
* {
box-sizing: inherit;
font-family: system-ui;
}