22 lines
238 B
SCSS
22 lines
238 B
SCSS
body {
|
|
font-family: $sans-serif;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: $sans-serif;
|
|
}
|
|
|
|
table {
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.container {
|
|
padding: lh(2);
|
|
|
|
> div {
|
|
display: table;
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
}
|
|
}
|