diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-22 13:49:17 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:06:07 +0200 |
| commit | adba75ab51401ae99039376b4b64449c9a77e18d (patch) | |
| tree | 0a96e8695c0af2b5cfece8f6541ae06bbdcde864 /src/pages | |
| parent | d628e0ac5162bb1baeb16fcf21b688d37bbff758 (diff) | |
Expand navbar to full width in-app
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/App.js | 2 | ||||
| -rw-r--r-- | src/pages/Experiments.js | 2 | ||||
| -rw-r--r-- | src/pages/Profile.js | 2 | ||||
| -rw-r--r-- | src/pages/Simulations.js | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/pages/App.js b/src/pages/App.js index 8f46156b..583b9476 100644 --- a/src/pages/App.js +++ b/src/pages/App.js @@ -55,7 +55,7 @@ class AppComponent extends React.Component { title={this.props.simulationName ? this.props.simulationName + " - OpenDC" : "Simulation - OpenDC"} > <div className="page-container full-height"> - <AppNavbar simulationId={this.props.simulationId} inSimulation={true}/> + <AppNavbar simulationId={this.props.simulationId} inSimulation={true} fullWidth={true}/> {this.props.datacenterIsLoading ? <div className="full-height d-flex align-items-center justify-content-center"> <LoadingScreen/> diff --git a/src/pages/Experiments.js b/src/pages/Experiments.js index 5985de45..c56ad5ce 100644 --- a/src/pages/Experiments.js +++ b/src/pages/Experiments.js @@ -28,7 +28,7 @@ class ExperimentsComponent extends React.Component { "Experiments - OpenDC"} > <div className="full-height"> - <AppNavbar simulationId={this.props.simulationId} inSimulation={true}/> + <AppNavbar simulationId={this.props.simulationId} inSimulation={true} fullWidth={true}/> <div className="container text-page-container full-height"> <ExperimentListContainer/> <NewExperimentButtonContainer/> diff --git a/src/pages/Profile.js b/src/pages/Profile.js index 6d09dc89..17b01495 100644 --- a/src/pages/Profile.js +++ b/src/pages/Profile.js @@ -8,7 +8,7 @@ import DeleteProfileModal from "../containers/modals/DeleteProfileModal"; const ProfileContainer = ({onDelete}) => ( <DocumentTitle title="My Profile - OpenDC"> <div className="full-height"> - <AppNavbar inSimulation={false}/> + <AppNavbar inSimulation={false} fullWidth={false}/> <div className="container text-page-container full-height"> <button className="btn btn-danger" onClick={onDelete}>Delete my account on OpenDC</button> <p> diff --git a/src/pages/Simulations.js b/src/pages/Simulations.js index 5ca48435..46b2843c 100644 --- a/src/pages/Simulations.js +++ b/src/pages/Simulations.js @@ -18,7 +18,7 @@ class SimulationsContainer extends React.Component { return ( <DocumentTitle title="My Simulations - OpenDC"> <div className="full-height"> - <AppNavbar inSimulation={false}/> + <AppNavbar inSimulation={false} fullWidth={false}/> <div className="container text-page-container full-height"> <SimulationFilterPanel/> <VisibleSimulationList/> |
