21 lines
357 B
SCSS
21 lines
357 B
SCSS
//Override Antd Row margin to save space on forms.
|
|
.imex-form-row {
|
|
.ant-row {
|
|
margin-bottom: 0rem;
|
|
|
|
.ant-form-item-label {
|
|
padding: 0rem;
|
|
}
|
|
|
|
label {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
width: 100%;
|
|
display: inline-block;
|
|
padding: 0rem;
|
|
margin: 0rem;
|
|
}
|
|
}
|
|
}
|