From 62d604bdebb2c6db5113c3ad78e2feb05bcac4d3 Mon Sep 17 00:00:00 2001 From: Pedro Reis Date: Tue, 27 Aug 2019 16:08:59 +0100 Subject: [PATCH] Update _variables.scss --- assets/styles/config/_variables.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/styles/config/_variables.scss b/assets/styles/config/_variables.scss index c449f60..dcf700c 100755 --- a/assets/styles/config/_variables.scss +++ b/assets/styles/config/_variables.scss @@ -35,10 +35,10 @@ $breakpoint-sm: 768px; $breakpoint-xs: 480px; $breakpoints: ( - 'lg' '(min-width: ' + $breakpoint-lg + ')', - 'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')', - 'sm' '(max-width:' + ($breakpoint-md - 1) + ')', - 'xs' '(max-width: ' + $breakpoint-sm + ')' + 'lg' '(min-width: ' + ($breakpoint-md + 1) + ')', + 'md' '(min-width: ' + ($breakpoint-sm + 1) + ') and (max-width: ' + $breakpoint-md + ')', + 'sm' '(min-width: ' + ($breakpoint-xs + 1) + ') and (max-width:' + $breakpoint-sm + ')', + 'xs' '(max-width: ' + $breakpoint-xs + ')' );