mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
55 lines
1.2 KiB
SCSS
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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |