28 lines
328 B
SCSS
28 lines
328 B
SCSS
@import './variables.scss';
|
|
|
|
html {
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#app {
|
|
height: 100%;
|
|
background: $dark4;
|
|
color: $textPrimary;
|
|
}
|
|
|
|
.text-secondary {
|
|
color: $textSecondary;
|
|
}
|
|
|
|
small {
|
|
font-size: 75%;
|
|
}
|
|
|
|
.ellipsis {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|