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

24 lines
285 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;
display: flex;
2023-04-07 21:33:32 -05:00
}
2023-04-20 23:36:52 -05:00
a {
text-decoration: none;
color: inherit;
2023-04-07 23:18:45 -05:00
}