Adding font files

This commit is contained in:
Fabian
2019-07-26 16:04:31 +02:00
parent e394c002f4
commit efd539f456
12 changed files with 291 additions and 6 deletions

41
src/old/_header.scss Normal file
View File

@ -0,0 +1,41 @@
.header {
@if $theme {
@include Elevation(3);
background: $primary;
color: $on-primary;
}
@else {
display: flex;
justify-content: space-between;
padding: .75rem;
margin-bottom: .5rem;
>* {
margin: 0;
background: $primary;
color: $on-primary;
}
.header-title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex-grow: 1;
margin: 0 1rem;
}
.header-icon-button {
display: block;
margin-top: auto;
margin-bottom: auto;
min-width: $default-font-size;
>svg {
height: $default-font-size;
width: $default-font-size;
}
}
}
}