This commit is contained in:
Jay 2017-04-05 17:54:23 +08:00
parent c132be1ed0
commit b781efabea
4 changed files with 6 additions and 6 deletions

View File

@ -87998,7 +87998,7 @@ var LocStatus = function (_React$Component) {
return _react2.default.createElement(
_semanticUiReact.Container,
null,
{ fluid: true },
_react2.default.createElement(
_semanticUiReact.Segment,
{ className: 'clearfix' },
@ -88181,7 +88181,7 @@ var WristbandPage = function (_React$Component) {
return _react2.default.createElement(
_semanticUiReact.Container,
null,
{ fluid: true },
_react2.default.createElement(
_semanticUiReact.Grid,
null,
@ -88609,7 +88609,7 @@ var MainMenu = function MainMenu(_ref) {
),
_react2.default.createElement(
_semanticUiReact.Container,
{ style: { paddingTop: '45px', paddingBottom: '40px' } },
{ style: { paddingTop: '45px', paddingBottom: '40px' }, fluid: true },
children
)
)

View File

@ -90,7 +90,7 @@ class LocStatus extends React.Component{
render (){
let {i18n} = this.props;
return (
<Container>
<Container fluid>
<Segment className="clearfix">
<Checkbox toggle checked={this.state.autoRefresh} onChange={(e,d) => {this.changeRefresh()}} label="自動更新" />
<Table>

View File

@ -25,7 +25,7 @@ class WristbandPage extends React.Component{
render(){
return (
<Container>
<Container fluid>
<Grid>
<Grid.Column width={4}>
<Menu vertical={true}>

View File

@ -44,7 +44,7 @@ const MainMenu = ({i18n, show, toggleMenu, children, permissions, showDashboard,
</Menu.Item>
</Menu.Menu>
</Menu>
<Container style={{paddingTop: '45px', paddingBottom: '40px'}}>
<Container style={{paddingTop: '45px', paddingBottom: '40px'}} fluid>
{children}
</Container>
</Sidebar.Pusher>