-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.scss
30 lines (26 loc) · 1.01 KB
/
styles.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@use '~@angular/material' as mat;
@use 'theme';
// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat.core(theme.$custom-typography);
// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include mat.core-theme(theme.$app-theme);
@include mat.button-theme(theme.$app-theme);
@include mat.icon-theme(theme.$app-theme);
@include mat.toolbar-theme(theme.$app-theme);
@include mat.divider-theme(theme.$app-theme);
@include mat.expansion-theme(theme.$app-theme);
@include mat.progress-spinner-theme(theme.$app-theme);
@include mat.tabs-theme(theme.$app-theme);
/* You can add global styles to this file, and also import other style files */
html,
body {
height: 100%;
}
body {
margin: 0;
font-family: Roboto, 'Helvetica Neue', sans-serif;
}