Skip to content

Commit

Permalink
fix: menu list max-width
Browse files Browse the repository at this point in the history
  • Loading branch information
kostasdano committed Nov 6, 2023
1 parent 0f4dd28 commit d1d372a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/utils/DropdownOptions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ export const optionsStyle =
max-height: ${rem(253)};
overflow-y: auto;
position: absolute;
top: ${rem(48)};
left: ${menuPosition === 'left' ? 0 : 'initial'};
right: 0;
min-width: ${rem(150)};
width: 100%;
max-width: ${rem(620)};
width: fit-content;
height: auto;
background-color: ${theme.globals.oldColors.white};
box-shadow: ${theme.globals.elevation['02']};
Expand Down

0 comments on commit d1d372a

Please sign in to comment.