Feat/logs revamp (#2075)

auto reconnect to logs websocket and hopefully fix scrolling issues
This commit is contained in:
Matt Hill
2023-01-10 14:55:11 -07:00
committed by GitHub
parent 5656fd0b96
commit f914110626
8 changed files with 133 additions and 80 deletions

View File

@@ -120,4 +120,22 @@ ion-modal {
.color-primary-shade {
color: var(--ion-color-primary-shade)
}
}
@keyframes ellipsis-dot {
25% {
content: '';
}
50% {
content: '.';
}
75% {
content: '..';
}
100% {
content: '...';
}
}