ptut-vhost/webpack/scss/container.scss

42 lines
580 B
SCSS

@import 'constants';
#CONTAINER{
display: block;
position: absolute;
top: $header-height;
left: $menu-width;
height: calc( 100% - #{$header-height} );
width: calc( 100% - #{$menu-width} );
background-color: $bg-color;
overflow: hidden;
overflow-y: auto;
z-index: 100;
// card container
&.card{
display: flex;
flex-direction: row;
justify-content: flex-start;
flex-wrap: wrap;
}
}
/* [1] List style
---------------------------------*/
@import 'container/list';
/* [2] Card style
---------------------------------*/
@import 'container/card';