From 953c2098a63c338ac089853c6effef5fc7e4830d Mon Sep 17 00:00:00 2001 From: Keren Chandran Date: Tue, 8 Mar 2016 09:22:58 -0500 Subject: [PATCH] Modified z-index to include default --- components/_globals.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/_globals.scss b/components/_globals.scss index 8dbaf123..53a2ac01 100644 --- a/components/_globals.scss +++ b/components/_globals.scss @@ -47,9 +47,9 @@ $animation-curve-fast-out-linear-in: cubic-bezier(0.4, 0, 1, 1) !default; $animation-curve-default: $animation-curve-fast-out-slow-in !default; //-- Indexes -$z-index-highest: 300; -$z-index-higher: 200; -$z-index-high: 100; -$z-index-normal: 1; -$z-index-low: -100; -$z-index-lower: -200; +$z-index-highest: 300 !default; +$z-index-higher: 200 !default; +$z-index-high: 100 !default; +$z-index-normal: 1 !default; +$z-index-low: -100 !default; +$z-index-lower: -200 !default;