Skip to content

Commit 0a56383

Browse files
authored
Merge pull request #33 from maemreyo/feat/imprv-ui
chore: update ui
2 parents 6819959 + 7f4eccf commit 0a56383

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/features/inputs/components/styled.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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

7676
export 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};

0 commit comments

Comments
 (0)