fuse-angular/src/app/core/components/layout/layout.component.scss

26 lines
514 B
SCSS
Raw Normal View History

2017-07-12 12:35:07 +00:00
:host {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
#wrapper {
display: flex;
2017-07-12 14:34:32 +00:00
flex: 1;
2017-07-12 12:35:07 +00:00
.content-wrapper {
display: flex;
2017-07-12 14:34:32 +00:00
flex-direction: column;
2017-07-12 12:35:07 +00:00
flex: 1;
fuse-content {
display: flex;
2017-07-12 14:34:32 +00:00
flex-direction: row;
2017-07-12 12:35:07 +00:00
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
}
}
}