fuse-angular/src/app/layout/vertical/layout-3/layout-3.component.scss
Sercan Yemen 507fe97e84 Changed layout names to make them easier to understand
New navigation structure for documentation and Angular Material elements
2018-06-12 10:44:00 +03:00

55 lines
1.2 KiB
SCSS

@import "../../../../@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;
// Boxed
&.boxed {
max-width: 1200px;
margin: 0 auto;
@include mat-elevation(8);
}
// Container 1 (Scrollable)
> .container {
position: relative;
display: flex;
flex: 1 1 auto;
flex-direction: column;
width: 100%;
overflow-x: hidden;
overflow-y: auto;
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);
}
}
}
}
}