ptut-vhost/webpack/scss/container.scss

42 lines
580 B
SCSS
Raw Normal View History

2018-02-28 12:00:51 +00:00
@import 'constants';
#CONTAINER{
display: block;
position: absolute;
top: $header-height;
left: $menu-width;
height: calc( 100% - #{$header-height} );
width: calc( 100% - #{$menu-width} );
2018-02-28 12:00:51 +00:00
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
---------------------------------*/
2018-03-14 16:43:44 +00:00
@import 'container/list';
2018-03-14 16:43:44 +00:00
/* [2] Card style
---------------------------------*/
2018-03-14 16:42:18 +00:00
@import 'container/card';