diff --git a/src/components/Layout/Layout.js b/src/components/Layout/Layout.js
index db1a4a55d..08ad6bc54 100644
--- a/src/components/Layout/Layout.js
+++ b/src/components/Layout/Layout.js
@@ -38,13 +38,13 @@ class Layout extends React.Component {
) : null }
-
+
{ store.team.name }
{ this.props.title }
-
+
{ this.props.actions }
diff --git a/src/components/Layout/Layout.scss b/src/components/Layout/Layout.scss
index c12fdb784..23ed3df5e 100644
--- a/src/components/Layout/Layout.scss
+++ b/src/components/Layout/Layout.scss
@@ -10,8 +10,10 @@
.header {
display: flex;
- justify-content: space-between;
+ justify-content: space-around;
align-items: center;
+
+ position: relative;
padding: 0 20px;
height: $headerHeight;
@@ -36,12 +38,28 @@
}
}
-.teamName a {
- font-family: 'Atlas Grotesk';
- font-weight: bold;
- color: $textColor;
- text-decoration: none;
- font-size: 16px;
+.headerLeft {
+ display: flex;
+ align-items: center;
+
+ position: absolute;
+ left: 20px;
+ top: 0;
+ bottom: 0;
+
+ a {
+ font-family: 'Atlas Grotesk';
+ font-weight: bold;
+ color: $textColor;
+ text-decoration: none;
+ font-size: 16px;
+ }
+}
+
+.headerRight {
+ position: absolute;
+ right: 20px;
+ margin-top: -1px;
}
.content {