33 lines
595 B
SCSS
33 lines
595 B
SCSS
@import '../../styles/abstracts/variables';
|
|
|
|
.capture-field-option {
|
|
border: 1px solid $grey2;
|
|
border-radius: 8px;
|
|
padding: 1rem;
|
|
input {
|
|
height: 48px;
|
|
font-weight: $semi-bold;
|
|
&::placeholder {
|
|
font-weight: $regular;
|
|
}
|
|
|
|
background: none !important;
|
|
border: none !important;
|
|
}
|
|
.ant-form-item-control-input {
|
|
min-height: 24px;
|
|
input {
|
|
height: 24px;
|
|
padding: 0;
|
|
border: none;
|
|
border-radius: 0;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
.flex-item {
|
|
transform: translateY(5px);
|
|
}
|
|
}
|