From 80760d895f7d35c3b856bb1e1dd9f695ecdeda2f Mon Sep 17 00:00:00 2001 From: LordMathis Date: Fri, 15 Jun 2018 17:02:47 +0200 Subject: [PATCH] Use break-large css variable --- src/static/stylesheets/content.scss | 2 +- src/static/stylesheets/variables.scss | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/static/stylesheets/content.scss b/src/static/stylesheets/content.scss index 1de3e9a..c0235c7 100644 --- a/src/static/stylesheets/content.scss +++ b/src/static/stylesheets/content.scss @@ -9,7 +9,7 @@ color: $blue; } width: 100%; - @media (min-width: 992px) { + @media (min-width: $break-large) { width: 960px; } } diff --git a/src/static/stylesheets/variables.scss b/src/static/stylesheets/variables.scss index 664ba60..6eb5913 100644 --- a/src/static/stylesheets/variables.scss +++ b/src/static/stylesheets/variables.scss @@ -4,5 +4,4 @@ $white: #fdfdfd; $black: #2f2f2f; $blue: #144A98; $grey: #A9A9A9; -$break-medium: 768px; -$break-large: 1200px; +$break-large: 992px;