Skip to content

Commit bcd9a06

Browse files
committed
Revert "fixed CSS rendering issue in Chrome browser (171)"
This reverts commit 4a2489f.
1 parent 4a2489f commit bcd9a06

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

frontend/src/css/dashboard.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,15 +360,15 @@ table tr>*:last-child {
360360

361361
@keyframes show {
362362
0% {
363-
visibility: hidden;
363+
display: none;
364364
opacity: 0;
365365
}
366366
1% {
367-
visibility: visible;
367+
display: block;
368368
opacity: 0;
369369
}
370370
100% {
371-
visibility: visible;
371+
display: block;
372372
opacity: 1;
373373
}
374374
}

frontend/src/css/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ main .spinner .bounce2 {
127127
}
128128

129129
#click-overlay.active {
130-
visibility: visible;
130+
display: block;
131131
}
132132

133133
.action .counter {

0 commit comments

Comments
 (0)