mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-19 14:52:34 +00:00
47 lines
1.1 KiB
SCSS
47 lines
1.1 KiB
SCSS
@import "src/@fuse/scss/fuse";
|
|
|
|
vertical-layout-1-body-scroll {
|
|
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;
|
|
|
|
// 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%;
|
|
|
|
// Container 3
|
|
> .container {
|
|
position: relative;
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |