themagician.cc/styles/common.css

18 lines
215 B
CSS
Raw Permalink Normal View History

2023-12-02 17:35:11 +00:00
*, *::before, *::after {
margin: 0;
box-sizing: border-box;
}
body {
width: 100vw;
height: 100vh;
}
2023-12-02 17:40:40 +00:00
.center-grid {
width: 100%;
height: 100%;
display: grid;
place-items: center;
}