Skip to content

Commit

Permalink
#5615 - Overlapping UI elements in Query Properties right-click menu (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rrodionov91 authored and Guch1g0v committed Oct 17, 2024
1 parent dc339fe commit 47f1f87
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@ export default function ButtonGroup<T>({
className={clsx(classes.button, {
[classes.selected]: buttonValue === value,
})}
style={{ flex: '1 0 25%', margin: '2px', borderRadius: '3px' }}
style={{
display: 'flex',
flex: '1 0 25%',
margin: '2px',
borderRadius: '3px',
}}
>
{label || 'none'}
</ToggleButton>
Expand Down

0 comments on commit 47f1f87

Please sign in to comment.