Добавить автообновление UI и нижний статус соединения

This commit is contained in:
AidarKC
2026-04-21 01:58:46 +03:00
parent d07602b0a9
commit 8be56192cb
2 changed files with 164 additions and 16 deletions
+38
View File
@@ -41,6 +41,44 @@ body {
background: linear-gradient(180deg, rgba(7, 12, 23, 0) 0%, rgba(6, 11, 22, 0.96) 44%);
}
.connection-status-slot {
position: absolute;
left: 12px;
right: 12px;
bottom: calc(62px + env(safe-area-inset-bottom));
z-index: 5;
border-radius: 11px;
border: 1px solid rgba(133, 156, 201, 0.3);
background: rgba(10, 19, 37, 0.86);
color: #c6d6f7;
font-size: 12px;
line-height: 1.2;
text-align: center;
padding: 7px 10px;
pointer-events: none;
backdrop-filter: blur(10px);
}
.connection-status-slot.is-connected {
border-color: rgba(124, 235, 171, 0.4);
color: #d8ffe9;
}
.connection-status-slot.is-connecting {
border-color: rgba(238, 196, 107, 0.42);
color: #ffe8bb;
}
.connection-status-slot.is-disconnected {
border-color: rgba(228, 127, 145, 0.44);
color: #ffdce3;
}
.connection-status-slot.is-updating {
border-color: rgba(144, 201, 255, 0.44);
color: #d9eeff;
}
@media (min-width: 900px) {
.app-shell {
margin: 16px 0;