From 5265e125be5ec4c5f1ac6bf867398f09e5076b5d Mon Sep 17 00:00:00 2001 From: Greg Fodor <gfodor@gmail.com> Date: Mon, 21 May 2018 09:00:00 -0700 Subject: [PATCH] Forgot to re-use variable --- src/assets/stylesheets/index.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/assets/stylesheets/index.scss b/src/assets/stylesheets/index.scss index 84e67fb07..6b13dabd4 100644 --- a/src/assets/stylesheets/index.scss +++ b/src/assets/stylesheets/index.scss @@ -2,7 +2,7 @@ @import 'hub-create'; @import 'info-dialog'; -$title-width: 350px; +$header-section-width: 350px; * { box-sizing: border-box; @@ -63,14 +63,14 @@ body { &__title { display: flex; - width: $title-width; + width: $header-section-width; @media (max-width: 768px) { justify-content: center; } @media (max-width: 1024px) { - flex: 1 1 350px; + flex: 1 1 $header-section-width; } &__name { @@ -103,8 +103,8 @@ body { &__experiment { text-align: right; - flex: 1 1 350px; - width: 350px; + flex: 1 1 $header-section-width; + width: $header-section-width; color: $grey-text; font-size: 1.0em; font-weight: lighter; -- GitLab