Browse Source

Cover and Modal elements have been given a much higher z-index to make sure they fall on top of all other elements.

dev
Bryan Miller 6 years ago
parent
commit
cd37f0a08b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      sass/mixins.scss

+ 1
- 1
sass/mixins.scss View File



@mixin cover(){ @mixin cover(){
position: fixed; /* Stay in place */ position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
z-index: 100; /* Sit on top */
left: 0; left: 0;
top: 0; top: 0;
width: 100%; /* Full width */ width: 100%; /* Full width */

Loading…
Cancel
Save