File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/features/inputs/components Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export const Dropdown = styled.div`
4444 border: 1px solid ${ ( { theme } ) => theme . colors . border } ;
4545 border-radius: ${ ( { theme } ) => theme . radius . md } ;
4646 box-shadow: ${ ( { theme } ) => theme . shadows . md } ;
47- max-height: 200px ;
47+ max-height: 250px ;
4848 overflow-y: auto;
4949 z-index: 1000;
5050` ;
@@ -53,7 +53,7 @@ export const DropdownItem = styled.div<{ $selected?: boolean }>`
5353 display: flex;
5454 justify-content: space-between;
5555 align-items: center;
56- padding: ${ ( { theme } ) => theme . space . lg } ;
56+ padding: ${ ( { theme } ) => theme . space . md } ${ ( { theme } ) => theme . space . lg } ;
5757 cursor: pointer;
5858
5959 &:hover {
@@ -74,7 +74,8 @@ export const MaxItemsReached = styled.span`
7474` ;
7575
7676export const MessageText = styled . div `
77- padding: ${ ( { theme } ) => theme . space . lg } ;
77+ padding: ${ ( { theme } ) => theme . space . md } ;
78+ font-size: ${ ( { theme } ) => theme . fontSizes . medium } ;
7879 text-align: center;
7980 color: ${ ( { theme } ) => theme . colors [ 'secondary-600' ] } ;
8081` ;
@@ -87,7 +88,7 @@ export const SelectedItem = styled.div`
8788 display: flex;
8889 align-items: center;
8990 justify-content: space-between;
90- padding: ${ ( { theme } ) => theme . space . lg } ;
91+ padding: ${ ( { theme } ) => theme . space . md } ;
9192 background-color: ${ ( { theme } ) => theme . colors [ 'light-100' ] } ;
9293 border: 1px solid ${ ( { theme } ) => theme . colors . border } ;
9394 border-radius: ${ ( { theme } ) => theme . radius . md } ;
You can’t perform that action at this time.
0 commit comments