57 lines
868 B
SCSS
57 lines
868 B
SCSS
.home {
|
|
display: flex;
|
|
transition: all .2s;
|
|
background-color: $--background-color-empty;
|
|
.body {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: calc(100% - 240px);
|
|
transition: all .2s;
|
|
}
|
|
}
|
|
.temp-dom {
|
|
visibility: hidden;
|
|
font-size: 14px;
|
|
position: fixed;
|
|
}
|
|
.temp-dom--12 {
|
|
visibility: hidden;
|
|
font-size: 12px;
|
|
position: fixed;
|
|
}
|
|
|
|
.home.tv,.home.se{
|
|
.left-menu{
|
|
display: none;
|
|
}
|
|
.body{
|
|
width: 100%;
|
|
.header{
|
|
display: none;
|
|
}
|
|
.container{
|
|
height: 100%;
|
|
.main-container{
|
|
&>.panel-top-tools{
|
|
padding-left: 10px;
|
|
}
|
|
&>.table-list{
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.home.se{
|
|
.main-container{
|
|
&>.panel-top-tools{
|
|
display: none;
|
|
}
|
|
&>.table-list{
|
|
height: 100%;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|