19 lines
231 B
SCSS
19 lines
231 B
SCSS
|
|
||
|
body {
|
||
|
font-family: 'Open Sans', sans-serif !important;
|
||
|
font-weight: 300;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $link-color;
|
||
|
}
|
||
|
|
||
|
.flex-center {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-wrap: wrap;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|