neotel-website/styles.scss

39 lines
364 B
SCSS
Raw Normal View History

2021-06-07 12:31:15 +00:00
---
---
*,
*:before,
*:after
{
box-sizing: border-box;
}
html,
body
{
min-height: 100vh;
height: auto;
max-width: 100vw;
2021-06-07 12:49:50 +00:00
width: auto;
2021-06-07 12:31:15 +00:00
margin: 0;
padding: 0;
font-family: sans-serif;
}
.container
{
height: 100%;
min-height: 100vh;
width: 100%;
max-width: 100vw;
padding: 1rem;
}
@import 'nav';
@import 'table';
@import 'utils';
@import 'index';