mirror of
https://github.com/fspc/workstand.git
synced 2025-02-23 09:13:23 -05:00
Make form wider.
This commit is contained in:
parent
276d420ed1
commit
29cdcf2936
@ -13,8 +13,8 @@ export default class Member extends React.Component {
|
|||||||
errorText={this.props.error}
|
errorText={this.props.error}
|
||||||
hintText="Search members"
|
hintText="Search members"
|
||||||
searchText={this.props.searchText}
|
searchText={this.props.searchText}
|
||||||
|
fullWidth={true}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,11 @@ import MenuItem from 'material-ui/MenuItem';
|
|||||||
export default class Purpose extends React.Component {
|
export default class Purpose extends React.Component {
|
||||||
render () {
|
render () {
|
||||||
return (
|
return (
|
||||||
<SelectField value={this.props.default} onChange={this.props.handleChange.bind(this)}>
|
<SelectField
|
||||||
|
value={this.props.default}
|
||||||
|
onChange={this.props.handleChange.bind(this)}
|
||||||
|
fullWidth={true}
|
||||||
|
>
|
||||||
<MenuItem value={'VOLUNTEER'} primaryText="Volunteer" />
|
<MenuItem value={'VOLUNTEER'} primaryText="Volunteer" />
|
||||||
<MenuItem value={'FIX'} primaryText="Fix" />
|
<MenuItem value={'FIX'} primaryText="Fix" />
|
||||||
<MenuItem value={'WORKSHOP'} primaryText="Workshop" />
|
<MenuItem value={'WORKSHOP'} primaryText="Workshop" />
|
||||||
@ -15,4 +19,3 @@ export default class Purpose extends React.Component {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,6 +54,6 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div id="root"></div>
|
<div id="root" class="mdl-cell--6-col mdl-cell--8-col-tablet mdl-cell"></div>
|
||||||
{% render_bundle 'main' %}
|
{% render_bundle 'main' %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user