Skip to content

Commit 409b2e9

Browse files
committed
chore: compliant medium with large size
1 parent d732a8c commit 409b2e9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/form/form-item/form-item.component.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ $form-item-width: (
55
large: (
66
width: use-var(form-item-width-l),
77
),
8+
medium: (
9+
width: use-var(form-item-width-l),
10+
),
811
small: (
912
width: use-var(form-item-width-s),
1013
),
@@ -85,7 +88,7 @@ $form-item-width: (
8588
align-items: center;
8689
min-height: use-var(inline-height-m);
8790

88-
@each $key in large small {
91+
@each $key in large medium small {
8992
$map: map-get($form-item-width, $key);
9093
&--#{$key} {
9194
.aui-form-item__control {

src/theme/_theme-preset.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
--aui-border-radius-l: 4px;
4242
--aui-border-radius-m: 2px;
4343
--aui-form-item-width-l: 732px;
44+
--aui-form-item-width-m: 732px;
4445
--aui-form-item-width-s: 140px;
4546
}
4647

0 commit comments

Comments
 (0)