forked from FrontendMatter/bootstrap-layout-scrollable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
47 lines (39 loc) · 1.02 KB
/
Copy pathstyle.scss
File metadata and controls
47 lines (39 loc) · 1.02 KB
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
47
///////////////
// SIMPLEBAR //
///////////////
.simplebar-track {
width: $simplebar-width;
.simplebar-scrollbar {
background: $simplebar-bg;
}
}
.simplebar.horizontal .simplebar-track .simplebar-scrollbar {
height: $simplebar-width;
}
////////////////////
// LAYOUT CONTENT //
////////////////////
.layout-content > .simplebar-scroll-content {
bottom: $grid-gutter-width;
}
////////////////////
// LAYOUT SPACING //
////////////////////
.ls-top > .layout-content > .simplebar-scroll-content {
top: $font-size-root * strip-unit($grid-gutter-width);
}
.top-navbar > .layout-content > .simplebar-scroll-content {
top: $navbar-height;
}
.ls-top-navbar > .layout-content > .simplebar-scroll-content {
top: $navbar-height + ($font-size-root * strip-unit($grid-gutter-width));
}
///////////////////
// SIDEBAR SKINS //
///////////////////
.sidebar-dark .simplebar-track .simplebar-scrollbar {
background: $sidebar-dark-simplebar-bg;
}
.sidebar-light .simplebar-track .simplebar-scrollbar {
background: $sidebar-light-simplebar-bg;
}