fix: optically center the ETA separator

Right-align the speed before the separator and left-align ETA after it so the second metric divider sits exactly between the visible values.
This commit is contained in:
Sucukdeluxe
2026-08-21 00:42:37 +02:00
parent 71207d98eb
commit 44fb93e7ea
2 changed files with 7 additions and 2 deletions
+5 -2
View File
@@ -2576,11 +2576,14 @@ select.hs-input { max-width: none; width: auto; min-width: 140px; }
place-items: center;
}
#updateProgressSpeed,
#updateProgressEta {
#updateProgressSpeed {
text-align: right;
}
#updateProgressEta {
text-align: left;
}
#updateProgressText {
min-width: 34px;
max-width: 100%;