fuse-angular/src/app/layout/vertical/layout-3/layout-3.component.scss
Sercan Yemen 19c960cc4c (Navbar) Moved navbar style into the variants
(AppComponent) Moved boxed class to the body
Fixed: Horizontal layout navbar covers entire screen
2018-07-13 18:55:45 +03:00

50 lines
1.1 KiB
SCSS

@import "src/@fuse/scss/fuse";
vertical-layout-3 {
display: flex;
flex: 1 1 auto;
width: 100%;
height: 100%;
#main {
position: relative;
display: flex;
flex: 1 1 auto;
flex-direction: column;
width: 100%;
height: 100%;
z-index: 1;
min-width: 0;
// Container 1 (Scrollable)
> .container {
position: relative;
display: flex;
flex: 1 1 auto;
flex-direction: column;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
transform: translateZ(0);
// Container 2
> .container {
position: relative;
display: flex;
flex: 1 0 auto;
width: 100%;
min-width: 0;
padding: 32px;
// Content component
> content {
flex: 1 1 auto;
min-width: 0;
@include mat-elevation(3);
}
}
}
}
}