Skip to content

Commit 8747c61

Browse files
authored
Merge pull request #2 from utmstack/bugfix/171-CSS_rendering_issue_in_Chrome_browser
2 parents bcd9a06 + f7c1ad4 commit 8747c61

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-
display: none;
363+
visibility: hidden;
364364
opacity: 0;
365365
}
366366
1% {
367-
display: block;
367+
visibility: visible;
368368
opacity: 0;
369369
}
370370
100% {
371-
display: block;
371+
visibility: visible;
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-
display: block;
130+
visibility: visible;
131131
}
132132

133133
.action .counter {

0 commit comments

Comments
 (0)