Align the field height across the whole form (#35720)
This commit is contained in:
parent
ffb256df0e
commit
6b3056422e
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: enhancement
|
||||
|
||||
Align the field height across the whole form
|
|
@ -7,8 +7,10 @@
|
|||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
padding: $gap-smallest 36px $gap-smallest $gap-smaller;
|
||||
padding: 2px 36px 2px $gap-smaller;
|
||||
margin-bottom: 4px;
|
||||
min-height: 36px;
|
||||
box-sizing: border-box;
|
||||
|
||||
> * {
|
||||
display: inline-flex;
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
.components-base-control {
|
||||
.components-text-control__input,
|
||||
.components-input-control .components-input-control__container .components-input-control__input,
|
||||
.components-select-control .components-input-control__container .components-select-control__input {
|
||||
min-height: 36px;
|
||||
}
|
||||
}
|
|
@ -54,3 +54,4 @@
|
|||
@import 'dynamic-form/style.scss';
|
||||
@import 'tour-kit/style.scss';
|
||||
@import 'collapsible-content/style.scss';
|
||||
@import 'form/style.scss';
|
||||
|
|
Loading…
Reference in New Issue