Created
May 7, 2020 19:32
-
-
Save baranovxyz/f38795f2607dae4f00e81a695b5c3dfa 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
.Modal { | |
/* fixed position will always show modal in the top left corner */ | |
position: fixed; | |
top: 0; | |
left: 0; | |
/* z-index to show modal even if it is used before some other elements */ | |
z-index: 5; | |
/* make modal fill whole window */ | |
width: 100vw; | |
height: 100vh; | |
/* add some background to blur content behind modal */ | |
background: rgba(255, 255, 255, 0.9); | |
/* center content inside modal */ | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment