We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e968560 + aaddab0 commit 3ead234Copy full SHA for 3ead234
app/javascript/components/map/components/mini-legend/mini-legend-component.jsx
@@ -21,7 +21,13 @@ class MiniLegend extends PureComponent {
21
<ul>
22
{layers.map(l => (
23
<li key={l.slug}>
24
- <span style={{ backgroundColor: l.title_color }} />
+ <span
25
+ style={
26
+ l.slug === 'loss_by_driver'
27
+ ? { marginLeft: '-1rem' }
28
+ : { backgroundColor: l.title_color }
29
+ }
30
+ />
31
{l.title}
32
</li>
33
))}
0 commit comments