From 5c73b4de6f8628732419b5bcb5bf12bb34776a2c Mon Sep 17 00:00:00 2001 From: Adam Plumer Date: Sun, 13 Jan 2019 17:04:15 -0600 Subject: [PATCH] fix(sass): update stylesheet with correct keys --- src/lib/core/sass/_layout-bp.scss | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib/core/sass/_layout-bp.scss b/src/lib/core/sass/_layout-bp.scss index 1b6343c22..f7829872d 100644 --- a/src/lib/core/sass/_layout-bp.scss +++ b/src/lib/core/sass/_layout-bp.scss @@ -29,20 +29,20 @@ $breakpoints: ( // Material Design breakpoints // @type map $overlapping-gt: ( - xs: 600px, - sm: 960px, - md: 1280px, - lg: 1920px, + gt-xs: 600px, + gt-sm: 960px, + gt-md: 1280px, + gt-lg: 1920px, ) !default; // Overlapping breakpoints that are less than defined // Material Design breakpoints // @type map $overlapping-lt: ( - sm: 599px, - md: 959px, - lg: 1279px, - xl: 1919px, + lt-sm: 599px, + lt-md: 959px, + lt-lg: 1279px, + lt-xl: 1919px, ) !default;