mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-14 00:43:02 -06:00
25 lines
450 B
SCSS
25 lines
450 B
SCSS
@import '~@angular/material/theming';
|
|
|
|
$font-family: Roboto, 'Helvetica Neue', sans-serif;
|
|
|
|
$custom-typography: mat-typography-config($font-family: $font-family);
|
|
|
|
@include mat-core($custom-typography);
|
|
|
|
$primary: mat-palette($mat-grey, 800, 50);
|
|
$accent: mat-palette($mat-indigo);
|
|
|
|
$theme: mat-light-theme($primary, $accent);
|
|
|
|
@include angular-material-theme($theme);
|
|
|
|
body {
|
|
font-family: $font-family;
|
|
margin: 0;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
height: 100%;
|
|
}
|