-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix sweetalert2 scroll issue in CSS files
- Loading branch information
1 parent
82f10d4
commit ebdd8f4
Showing
2 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* | ||
Fix sweetalert2 scroll issue | ||
https://github.com/sweetalert2/sweetalert2/issues/781#issuecomment-475108658 | ||
*/ | ||
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown), | ||
html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) { | ||
height: 100% !important; | ||
overflow-y: visible !important; | ||
} |
This file contains 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