38 lines
429 B
SCSS
38 lines
429 B
SCSS
.MuiGrid-container {
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.section-header {
|
|
margin-top: 2.5rem;
|
|
}
|
|
|
|
.subsection-header {
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
min-height: 100%;
|
|
|
|
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#content {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
body, #root {
|
|
min-height: 100vh;
|
|
}
|