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

28 lines
370 B
CSS
Raw Normal View History

2023-04-07 21:33:32 -05:00
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html,
body {
2023-04-07 23:18:45 -05:00
height: 100%;
2023-04-07 21:33:32 -05:00
max-width: 100vw;
overflow-x: hidden;
}
body {
2023-04-07 23:18:45 -05:00
font-family: 'Roboto', sans-serif;
font-size: 16px;
line-height: 1.5;
color: white;
background-color: #05254a;
display: flex;
2023-04-07 21:33:32 -05:00
}
2023-04-07 23:18:45 -05:00
.container {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
}