-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
46 lines (39 loc) · 1.18 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@use '@angular/material' as mat;
@use 'angular-material-contrast-fix';
@include mat.core();
@import url('https://fonts.googleapis.com/css?family=Merriweather+Sans:300,400,700');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined');
@import 'styles/variables';
$up-theme: mat.define-light-theme(
(
color: (
primary: $up-primary-palette,
accent: $up-accent-palette,
warn: $up-warn-palette,
),
typography: $up-typography-config,
density: 0,
)
);
@include mat.all-component-themes($up-theme);
@include angular-material-contrast-fix.all-component-themes($up-theme);
@include mat.typography-hierarchy($up-typography-config);
@import 'purecss-sass';
@import 'styles/basic';
@import 'styles/button';
@import 'styles/button-toggle';
@import 'styles/card';
@import 'styles/checkbox';
@import 'styles/datepicker';
@import 'styles/dialog';
@import 'styles/drawer';
@import 'styles/expansion';
@import 'styles/form-field';
@import 'styles/form';
@import 'styles/input';
@import 'styles/slide-toggle';
@import 'styles/spinner';
@import 'styles/tab';
@import 'styles/table';
@import 'styles/toolbar';
@import 'styles/external-styles-fixes';