Exporting base styles

This commit is contained in:
Fabian
2019-07-05 12:12:26 +02:00
parent 68284de6bf
commit 9de113f12c
19 changed files with 114 additions and 81 deletions

17
src/theme/_btn.scss Normal file
View File

@ -0,0 +1,17 @@
.btn {
@include Elevation(1);
background: $button-color;
&:hover {
background: darken($button-color, 5%);
}
&:active {
background: lighten($button-color, 5%);
}
}
.fab {
@include Elevation(8);
background: $button-color;
}