Skip to content

Commit

Permalink
Merge pull request #4675 from wri/FLAG-876-the-shape-style-indicating…
Browse files Browse the repository at this point in the history
…-different-elements-within-the-layer-legend-is-off-for-several-datasets

FLAG-876: Fix map legend circles being squished
  • Loading branch information
SARodrigues authored Sep 14, 2023
2 parents b985a8c + d6b498d commit e6a16e7
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 e6a16e7

Please sign in to comment.