From 1931bdfcc82998e461bfeccfce27c72f72f87f67 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Mon, 17 Dec 2018 13:44:12 -0500 Subject: [PATCH] fixing z index issues with the topbar --- css/app.css | 2 +- scss/_stickyHeader.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/app.css b/css/app.css index d22a6dc..bcadd5d 100644 --- a/css/app.css +++ b/css/app.css @@ -9215,7 +9215,7 @@ html body .inner-wrap #page-wrapper header #top-bar-wrapper { height: 100px; background: #46b2f0; position: fixed; - z-index: 10; + z-index: 999; top: 60px; transition: all 100ms ease-in; } html body .inner-wrap #page-wrapper header #top-bar-wrapper.navShadow { diff --git a/scss/_stickyHeader.scss b/scss/_stickyHeader.scss index afddb8b..d391585 100644 --- a/scss/_stickyHeader.scss +++ b/scss/_stickyHeader.scss @@ -36,7 +36,7 @@ html body .inner-wrap #page-wrapper header #top-bar-wrapper { // display: grid; // grid-template-columns: 1fr 1fr; position: fixed; - z-index: 10; + z-index: 999; top: 60px; transition: all 100ms ease-in; &.navShadow { -- 2.17.1