Created
July 16, 2018 09:23
-
-
Save asvae/c9acb805f673e19440ad7df9aa391450 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.full-screen-overlay-modal { | |
&__background { | |
position: fixed; | |
z-index: 1000; | |
left: 0; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
} | |
&__content { | |
position: fixed; | |
z-index: 2000; | |
// Closing multiple modals won't work without this line. No idea as to why. | |
transform: translateY(4px); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment