39 lines
537 B
Plaintext
39 lines
537 B
Plaintext
|
@import 'theme.less';
|
||
|
|
||
|
#areas {
|
||
|
.area {
|
||
|
& > .name {
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr min-content;
|
||
|
grid-gap: 0px 16px;
|
||
|
align-items: center;
|
||
|
padding-left: 16px;
|
||
|
padding-right: 8px;
|
||
|
|
||
|
img {
|
||
|
margin-top: 3px;
|
||
|
margin-bottom: 4px;
|
||
|
height: 16px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
.section.configuration {
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr min-content;
|
||
|
grid-gap: 0 16px;
|
||
|
|
||
|
margin-top: 8px;
|
||
|
margin-bottom: 8px;
|
||
|
|
||
|
&:last-child {
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
height: 16px;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|