Display layer values

This commit is contained in:
lukasmartinelli
2016-09-09 00:55:50 +02:00
parent 7f9fb4579e
commit 73e36a22bf
4 changed files with 71 additions and 21 deletions

View File

@@ -16,7 +16,7 @@ export class WorkspaceDrawer extends React.Component {
editor = <LayerEditor layers={this.props.mapStyle.layers}/>
}
return <Container style={{
return <div style={{
zIndex: 100,
position: "fixed",
height: "100%",
@@ -27,7 +27,7 @@ export class WorkspaceDrawer extends React.Component {
backgroundColor: theme.colors.gray}
} >
{editor}
</Container>
</div>
}
}