Browse Source

fixed header height with AudioPlayer Height

Bachir Soussi Chiadmi 6 years ago
parent
commit
0d78da249b

+ 3 - 1
sites/all/themes/custom/edlptheme/assets/dist/styles/app.min.css

@@ -1098,8 +1098,10 @@ body, html {
 header[role="banner"] {
   z-index: 1;
   position: relative;
-  padding: 0.5em 1em; }
+  padding: 0 1em; }
   header[role="banner"] > .wrapper {
+    position: relative;
+    padding: 0.5em 0;
     border-bottom: 1px solid red;
     height: 70px; }
 

+ 3 - 1
sites/all/themes/custom/edlptheme/assets/styles/base/_layout.scss

@@ -22,8 +22,10 @@ header[role="banner"]{
   // outline: 1px solid blue;
   z-index: 1;
   position: relative;
-  padding:0.5em 1em;
+  padding:0 1em;
   >.wrapper{
+    position: relative;
+    padding:0.5em 0;
     border-bottom: 1px solid red;
     // TODO: what header height to fit well with player ??
     height:70px;