mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-16 21:35:13 +00:00
+ Added hidden property to the nav items + Updated fuse-navigation component docs + Updated other components that uses fuse-navigation service + Updated various packages including Angular and Angular Material
102 lines
2.0 KiB
SCSS
102 lines
2.0 KiB
SCSS
@import "src/@fuse/scss/fuse";
|
|
|
|
body {
|
|
|
|
&.fuse-sidebar-folded {
|
|
|
|
.content-wrapper {
|
|
|
|
&:last-child {
|
|
padding-left: 64px !important;
|
|
}
|
|
|
|
&:first-child {
|
|
padding-right: 64px !important;
|
|
}
|
|
|
|
&:first-child:last-child {
|
|
padding-left: 0 !important;
|
|
padding-right: 0 !important;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
fuse-sidebar {
|
|
|
|
&.folded:not(.unfolded) {
|
|
|
|
.navbar-vertical {
|
|
|
|
.navbar-header {
|
|
padding: 0 13px;
|
|
|
|
.logo {
|
|
|
|
.logo-text {
|
|
opacity: 0;
|
|
transition: opacity 200ms ease;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fuse-navbar {
|
|
height: 100%;
|
|
|
|
.navbar-vertical {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.navbar-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 64px;
|
|
min-height: 64px;
|
|
padding: 0 16px 0 24px;
|
|
transition: padding 200ms ease;
|
|
background-color: rgba(255, 255, 255, .05);
|
|
@include mat-elevation(1);
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.logo-icon {
|
|
width: 38px;
|
|
height: 38px;
|
|
}
|
|
|
|
.logo-text {
|
|
margin-left: 8px;
|
|
font-size: 20px;
|
|
font-weight: 300;
|
|
letter-spacing: 0.4px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.navbar-content {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.top-navbar + #wrapper {
|
|
|
|
& > .left-navbar {
|
|
display: none !important;
|
|
|
|
@include media-breakpoint-down(md) {
|
|
display: flex !important;
|
|
}
|
|
}
|
|
}
|
|
|