83 lines
1.4 KiB
SCSS
83 lines
1.4 KiB
SCSS
// Sidebar Base
|
|
|
|
.app-sidebar {
|
|
width: $app-sidebar-width;
|
|
display: flex;
|
|
z-index: 11;
|
|
overflow: hidden;
|
|
min-width: $app-sidebar-width;
|
|
position: relative;
|
|
flex: 0 0 $app-sidebar-width;
|
|
margin-top: -$app-header-height;
|
|
padding-top: $app-header-height;
|
|
transition: all .2s;
|
|
|
|
.app-sidebar__inner {
|
|
padding: 2px ($layout-spacer-x) $layout-spacer-x;
|
|
}
|
|
|
|
.scrollbar-container {
|
|
z-index: 15;
|
|
width: 100%;
|
|
}
|
|
|
|
.app-sidebar-bg {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
opacity: 0.05;
|
|
background-size: cover;
|
|
z-index: 10;
|
|
}
|
|
|
|
.app-header__logo {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
display: none;
|
|
z-index: 11;
|
|
}
|
|
|
|
&.sidebar-shadow {
|
|
box-shadow: 7px 0 60px rgba(0, 0, 0, 0.05);
|
|
}
|
|
}
|
|
|
|
.app-sidebar__heading {
|
|
text-transform: uppercase;
|
|
font-size: $font-size-xs;
|
|
margin: ($layout-spacer-x / 2) 0;
|
|
font-weight: bold;
|
|
color: $primary;
|
|
white-space: nowrap;
|
|
position: relative;
|
|
}
|
|
|
|
.sidebar-mobile-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #333;
|
|
opacity: .6;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 12;
|
|
}
|
|
|
|
// Sidebar Components
|
|
|
|
@import "modifiers/navmenu-vertical";
|
|
|
|
// Sidebar Modifiers
|
|
|
|
@import "themes/sidebar-light";
|
|
@import "themes/sidebar-dark";
|
|
//@import "themes/sidebar-inverted";
|
|
|
|
|
|
@import "modifiers/fixed-sidebar";
|
|
@import "modifiers/closed-sidebar";
|