fix: resolved CSS rendering issue in Chrome browser

This commit is contained in:
이광오 2023-07-30 21:20:21 +09:00
parent f37513c45e
commit fd688add38
2 changed files with 6 additions and 4 deletions

View File

@ -319,6 +319,8 @@ body.rtl .card .card-title>*:first-child {
height: 100%; height: 100%;
width: 100%; width: 100%;
z-index: 9999; z-index: 9999;
visibility: hidden;
opacity: 0;
animation: .1s show forwards; animation: .1s show forwards;
} }
@ -380,15 +382,15 @@ body.rtl .card .card-title>*:first-child {
@keyframes show { @keyframes show {
0% { 0% {
display: none; visibility: hidden;
opacity: 0; opacity: 0;
} }
1% { 1% {
display: block; visibility: visible;
opacity: 0; opacity: 0;
} }
100% { 100% {
display: block; visibility: visible;
opacity: 1; opacity: 1;
} }
} }

View File

@ -128,7 +128,7 @@ main .spinner .bounce2 {
} }
#click-overlay.active { #click-overlay.active {
display: block; visibility: visible;
} }
.action .counter { .action .counter {