-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstyles.scss
executable file
·45 lines (35 loc) · 1.7 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
@import '~@angular/material/theming';
// 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();
// Import our custom theme
@import 'theme';
@import '../../../../libs/drestaurant-ui/src/lib/side-menu-item/side-menu-item.component.theme';
@import '../../../../libs/drestaurant-ui/src/lib/header/header.component.theme';
@import '../../../../libs/drestaurant-ui/src/lib/footer/footer.component.theme';
@import '../../../../libs/drestaurant-ui/src/lib/main-list-courier/main-list-courier.component.theme';
@import '../../../../libs/drestaurant-ui/src/lib/main-list-customer/main-list-customer.component.theme';
@import '../../../../libs/drestaurant-ui/src/lib/main-list-restaurant/main-list-restaurant.component.theme';
@import 'material_icons';
@import 'typography';
// You only have to add additional componenets here (instead of in every theme class)
@mixin custom-components-theme($theme) {
@include side-menu-item-component-theme($theme);
@include header-component-theme($theme);
@include footer-component-theme($theme);
@include main-list-courier-component-theme($theme);
@include main-list-customer-component-theme($theme);
@include main-list-restaurant-component-theme($theme);
//include other components here
}
// 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 angular-material-theme($candy-app-theme);
@include custom-components-theme($candy-app-theme);
a {
text-decoration:none;
}
body {
margin: 0px;
}