Skip to content

Commit 50b3c96

Browse files
committed
fix: add large size
1 parent 3009e92 commit 50b3c96

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export const enum SelectSize {
22
Small = 'small',
3-
Medium = 'medium'
3+
Medium = 'medium',
4+
Large = 'large'
45
}

projects/components/src/select/select.component.scss

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@
1717
border: 1px solid $color-border;
1818
border-radius: 6px;
1919
width: 100%;
20-
min-height: 34px;
21-
height: inherit;
20+
height: 34px;
2221

2322
&.small {
2423
height: 32px;
2524
}
2625

26+
&.large {
27+
height: 44px;
28+
}
29+
2730
.select-container {
2831
width: 100%;
2932
height: 100%;
@@ -118,5 +121,9 @@
118121
&.small {
119122
height: 32px;
120123
}
124+
125+
&.large {
126+
height: 44px;
127+
}
121128
}
122129
}

0 commit comments

Comments
 (0)