mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 17:21:18 +01:00
Remove padding in layer list
This commit is contained in:
parent
e307f58caf
commit
a30779193f
1 changed files with 4 additions and 1 deletions
|
@ -75,7 +75,10 @@ class LayerListContainer extends React.Component {
|
||||||
onLayerVisibilityToggle={this.onLayerVisibilityToggle.bind(this)}
|
onLayerVisibilityToggle={this.onLayerVisibilityToggle.bind(this)}
|
||||||
/>
|
/>
|
||||||
})
|
})
|
||||||
return <ul style={{ padding: margins[1], paddingRight: 0, margin: 0 }}>
|
return <ul style={{
|
||||||
|
padding: 0,
|
||||||
|
margin: 0
|
||||||
|
}}>
|
||||||
{layerPanels}
|
{layerPanels}
|
||||||
</ul>
|
</ul>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue