fixed CSS rendering issue in Chrome browser (171)

This commit is contained in:
MANUEL 2024-01-02 09:18:24 -06:00
parent eeeea6b364
commit f7c1ad49d8
2 changed files with 4 additions and 4 deletions

View File

@ -360,15 +360,15 @@ table tr>*:last-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

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