mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Dont let labels list expand too wide
This commit is contained in:
parent
c2cf30624b
commit
f0a725b7ef
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ type ActionDropdownProps = {
|
|||
const ActionDropdown = (props: ActionDropdownProps): JSX.Element => {
|
||||
return <Dropdown
|
||||
showArrow={true}
|
||||
css={{ m: '0px', p: '0px' }}
|
||||
css={{ m: '0px', p: '0px', overflow: 'hidden', maxWidth: '265px' }}
|
||||
side={props.layout == 'vertical' ? 'right' : 'bottom'}
|
||||
sideOffset={props.layout == 'vertical' ? 8 : 0}
|
||||
align={props.layout == 'vertical' ? 'start' : 'center'}
|
||||
|
|
|
|||
Loading…
Reference in a new issue