liuxiaolong
2019-05-06 acc45d2ece02563964d7b8a22ff0c40bd8358889
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
@import "./_appwork/include";
@import "./_theme/common";
@import "./_theme/libs";
@import "./_theme/uikit";
 
$primary-color: #26B4FF;
$body-bg: #f8f8f8;
 
body {
  background: $body-bg;
}
 
@include appwork-common-theme($primary-color);
@include appwork-libs-theme($primary-color);
@include appwork-uikit-theme($primary-color);
 
// Navbar
 
@include appwork-navbar-variant('.bg-navbar-theme', #fff, $color: $text-muted, $active-color: $body-color);
 
.layout-navbar {
  box-shadow: 0 1px 0 rgba($black, 0.04);
}
 
// Sidenav
 
@include appwork-sidenav-variant('.bg-sidenav-theme', #2e323a, $color: #838790);
 
// Footer
 
@include appwork-footer-variant('.bg-footer-theme', #fff, $color: $text-muted, $active-color: $body-color);