This commit is contained in:
sunny 2017-08-09 13:29:20 +09:00
parent 5bad40306d
commit baf6c129a1
6 changed files with 6 additions and 6 deletions

View File

@ -31,7 +31,7 @@ export class AppLayout extends React.Component<Props, State> {
return ( return (
<Container fluid> <Container fluid>
<LeftMenu /> <LeftMenu />
<Segment vertical style={{ margin: '0 0 0 210px', padding: '0' }}> <Segment basic style={{ margin: '0 0 0 210px', padding: '0' }}>
<Header /> <Header />
<TitleBarContainer location={this.props.location.pathname}/> <TitleBarContainer location={this.props.location.pathname}/>
<Segment basic> <Segment basic>

View File

@ -11,7 +11,7 @@ export class Footer extends React.Component<any, any> {
public render(): JSX.Element { public render(): JSX.Element {
return ( return (
<Segment vertical textAlign='center' size='tiny'> <Segment basic textAlign='center' size='tiny'>
<br /> <br />
Copyright LOAFLE. Copyright LOAFLE.
</Segment> </Segment>

View File

@ -49,7 +49,7 @@ export class ProbeDetailLayout extends React.Component<Props, State> {
return ( return (
<Container fluid> <Container fluid>
<LeftMenu /> <LeftMenu />
<Segment vertical style={{ margin: '0 0 0 210px', padding: '0' }}> <Segment basic style={{ margin: '0 0 0 210px', padding: '0' }}>
<Header /> <Header />
<TitleBarContainer sub={sub} location={this.props.location.pathname}/> <TitleBarContainer sub={sub} location={this.props.location.pathname}/>
<Segment basic> <Segment basic>

View File

@ -43,7 +43,7 @@ class SensorDetailLayout extends React.Component<Props, State> {
return ( return (
<Container fluid> <Container fluid>
<LeftMenu /> <LeftMenu />
<Segment vertical style={{ margin: '0 0 0 210px', padding: '0' }}> <Segment basic style={{ margin: '0 0 0 210px', padding: '0' }}>
<Header /> <Header />
<TitleBarContainer sub={sub} location={this.props.location.pathname} /> <TitleBarContainer sub={sub} location={this.props.location.pathname} />
{/*<TitleBar title='Sensor Details' sub={sub} />*/} {/*<TitleBar title='Sensor Details' sub={sub} />*/}

View File

@ -40,7 +40,7 @@ export class TargetDetailLayout extends React.Component<Props, State> {
return ( return (
<Container fluid> <Container fluid>
<LeftMenu /> <LeftMenu />
<Segment vertical style={{ margin: '0 0 0 210px', padding: '0' }}> <Segment basic style={{ margin: '0 0 0 210px', padding: '0' }}>
<Header /> <Header />
<TitleBarContainer title='Target Details' sub={sub} location={this.props.location.pathname} /> <TitleBarContainer title='Target Details' sub={sub} location={this.props.location.pathname} />
<Segment basic> <Segment basic>

View File

@ -33,7 +33,7 @@ export class AppLayout extends React.Component<Props, State> {
<Switch> <Switch>
<Container fluid> <Container fluid>
<LeftMenu /> <LeftMenu />
<Segment vertical style={{ margin: '0 0 0 210px', padding: '0' }}> <Segment basic style={{ margin: '0 0 0 210px', padding: '0' }}>
<Header /> <Header />
<Route exact path={`${this.props.match.url}/tablesort`} component={TableSortView} /> <Route exact path={`${this.props.match.url}/tablesort`} component={TableSortView} />
<Footer /> <Footer />