Files
onspring-api-docs/src/app/globals.css
T

29 lines
386 B
CSS

* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html,
body {
height: 100%;
max-width: 100vw;
overflow-x: hidden;
}
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.5;
color: white;
background-color: #05254a;
display: flex;
}
.container {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
min-width: 0;
}