chore: fix the position of close button for the popups.

This commit is contained in:
Yufan Sheng 2024-10-16 03:57:23 +08:00
parent fcb040748f
commit 566334daf5
Signed by: syhily
GPG Key ID: DEB186763C308C31

View File

@ -2310,13 +2310,14 @@ a:hover .overlay {
.nice-tips-close, .nice-tips-close,
.nice-popup-close { .nice-popup-close {
position: absolute; position: fixed;
display: flex;
align-items: center;
justify-content: center;
bottom: 0; bottom: 0;
left: 0; left: 0;
width: 100%; width: 100%;
z-index: 99; z-index: 99;
cursor: pointer;
text-align: center;
transform: translateY(25%); transform: translateY(25%);
} }