47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
// out: false, sourceMap: false, main: ../style.less
|
|
@import "colors.less";
|
|
.utilities-container{
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
.utilities-box{
|
|
height: 759px;
|
|
width: 1504px;
|
|
background-color: @color-background-white;
|
|
border-radius: 2px;
|
|
box-shadow: 0 1px 2px 0 @color-black-40;
|
|
overflow: hidden;
|
|
.utilities-header{
|
|
height: 65px;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
span{
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: @color-darkish-blue;
|
|
margin-left: 24px;
|
|
}
|
|
}
|
|
.utilities-body{
|
|
height: calc(~'100% - 65px');
|
|
padding-left:128px;
|
|
background-color: @color-silver;
|
|
overflow-y: auto;
|
|
.row{
|
|
height: 216px;
|
|
display: flex;
|
|
flex-flow: row;
|
|
padding-bottom: 24px;
|
|
.card-utilities{
|
|
margin-left:12px;
|
|
margin-right:12px;
|
|
margin-top: 35px;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
} |