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 445225f commit 48ef557
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 @@ -13,11 +13,11 @@ export const optionsStyle = ({ menuPosition }: MenuOptions) => (theme: Theme) =>
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.palette.white};
box-shadow: ${theme.elevation['02']};
Expand Down

0 comments on commit 48ef557

Please sign in to comment.