Last active
June 5, 2025 11:11
-
-
Save Kcko/7b2d2f65f54a9239cb9bfbf2966eaa17 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 { | |
/* Hidden state */ | |
display: none; | |
opacity: 1; | |
} | |
.modal.open { | |
display: block; | |
/* Regular transition works now */ | |
transition: opacity 300ms; | |
opacity: 1; | |
} | |
/* Define starting styles when modal becomes displayed */ | |
@starting-style { | |
.modal.open { | |
opacity: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment