24 lines
349 B
SCSS
24 lines
349 B
SCSS
|
.side-properties {
|
||
|
flex: 0 0 150px;
|
||
|
margin: 5px 5px 5px 0;
|
||
|
padding-right: 5px;
|
||
|
border-right: 2px groove #eeede0;
|
||
|
|
||
|
.side-property {
|
||
|
margin: 0;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
|
||
|
label {
|
||
|
flex: 2;
|
||
|
line-height: 26px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
text-align: right;
|
||
|
flex: 1;
|
||
|
}
|
||
|
}
|
||
|
}
|