Skip to content

Commit

Permalink
[fix] dropdown list alignment and spacing (#2325)
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
  • Loading branch information
igorDykhta committed Sep 20, 2023
1 parent ba6259d commit 203829a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/styles/src/base.ts
Expand Up @@ -885,7 +885,6 @@ const dropdownListAnchor = css`
padding-left: 3px;
font-size: ${props => props.theme.selectFontSize};
line-height: ${props => props.theme.dropdownListLineHeight}px;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
Expand All @@ -907,6 +906,10 @@ const dropdownListSize = css`
`;

const dropdownListItem = css`
height: 34px;
display: flex;
align-items: center;
${dropdownListSize} &.hover,
&:hover {
cursor: pointer;
Expand Down

0 comments on commit 203829a

Please sign in to comment.