All important stuff is in CSS now

This commit is contained in:
Lukas Martinelli
2017-01-11 11:35:33 +01:00
parent 9ef24428fe
commit b51354ae1d
22 changed files with 452 additions and 301 deletions

View File

@@ -1,7 +1,6 @@
import React from 'react'
import input from '../../config/input'
import DocLabel from '../fields/DocLabel'
import { margins } from '../../config/scales'
/** Wrap a component with a label */
class InputBlock extends React.Component {
@@ -29,9 +28,7 @@ class InputBlock extends React.Component {
}
render() {
return <div style={{
...this.props.style,
}}
return <div style={this.props.style}
className="maputnik-input-block"
>
{this.props.doc &&
@@ -44,11 +41,7 @@ class InputBlock extends React.Component {
/>
}
{!this.props.doc &&
<label
style={{
...input.label,
width: '50%',
}}>
<label className="maputnik-input-block-label">
{this.props.label}
</label>
}