This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
kingdombattles/public/styles/shared.css
T
2019-05-07 19:42:39 +10:00

18 lines
231 B
CSS

/* global defaults */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font: 13pt Helvetica, Arial;
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
overflow-x: hidden;
overflow-y: auto;
}