Skip to content

Commit

Permalink
Fix map legend circles being squished
Browse files Browse the repository at this point in the history
  • Loading branch information
SARodrigues committed Sep 11, 2023
1 parent 92f87da commit d6b498d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ class LegendItem extends React.PureComponent {
return (
<div
className={`icon-${icon}`}
style={{ width: size, height: size, backgroundColor: color }}
style={{
width: size,
height: size,
backgroundColor: color,
minWidth: size,
}}
/>
);
}
Expand Down

0 comments on commit d6b498d

Please sign in to comment.