From 61910fd14e6d4683cab18f357584864f01896290 Mon Sep 17 00:00:00 2001 From: Pedro Reis Date: Thu, 15 Dec 2016 12:42:14 +0000 Subject: [PATCH] Updated media queries --- assets/sass/config/_variables.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/sass/config/_variables.scss b/assets/sass/config/_variables.scss index 318deb5..de08df6 100755 --- a/assets/sass/config/_variables.scss +++ b/assets/sass/config/_variables.scss @@ -29,14 +29,14 @@ $base-spacing-unit: ($base-font-size * $base-line-height) * 1px; * Breakpoints */ -$breakpoint-sm: 767px; -$breakpoint-md: 992px; $breakpoint-lg: 1200px; +$breakpoint-md: 768px; +$breakpoint-sm: 480px; $breakpoints: ( 'lg' '(min-width: ' + $breakpoint-lg + ')', 'md' '(min-width: ' + $breakpoint-md + ') and (max-width: ' + ($breakpoint-lg - 1) + ')', - 'sm' '(min-width: ' + ($breakpoint-sm + 1) + ') and (max-width:' + ($breakpoint-md - 1) + ')', + 'sm' '(max-width:' + ($breakpoint-md - 1) + ')', 'xs' '(max-width: ' + $breakpoint-sm + ')' ); @@ -54,4 +54,4 @@ $grid-gutter: $base-spacing-unit; * Components */ -$border-radius: 3px; \ No newline at end of file +$border-radius: 3px;