Skip to content

Commit

Permalink
Merge branch 'master' into scroll-container-mask-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhabib authored Dec 9, 2024
2 parents 0cd452f + e8eddf8 commit c5b32e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ import { style } from '@vanilla-extract/css';

export const wrapperPositioning = style({
margin: '-1px -6px',
width: 'fit-content',
justifySelf: 'flex-end',
});
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ export const OverflowMenu = ({
id,
...menuProps
}: OverflowMenuProps) => (
<Box display="flex" className={styles.wrapperPositioning}>
<Box
className={styles.wrapperPositioning}
display="flex"
justifyContent="flexEnd"
>
<MenuRenderer
trigger={(triggerProps) => (
<ButtonIcon
Expand Down

0 comments on commit c5b32e8

Please sign in to comment.