fix: resolved CSS rendering issue in Chrome browser (#2582)

Co-authored-by: 이광오 <maeryo@hanwha.com>
pull/2501/head^2
M A E R Y O 2023-07-31 20:08:30 +09:00 committed by GitHub
parent efd41cc4c1
commit 2a4a46c61a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -318,6 +318,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;
} }
@ -379,15 +381,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 {