summaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/App.js2
-rw-r--r--src/pages/Experiments.js2
-rw-r--r--src/pages/Profile.js2
-rw-r--r--src/pages/Simulations.js2
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/>