From 14d1fc418b50bdc6eae2e0abed641955c9516f42 Mon Sep 17 00:00:00 2001 From: Sucukdeluxe Date: Mon, 15 Jun 2026 03:44:26 +0200 Subject: [PATCH] Account-Liste: Spalte "Download-Traffic" mittig zentriert User-Wunsch: die Traffic-Werte (z.B. "Unbeschraenkt") in der Account-Liste zentriert statt linksbuendig. text-align center fuer die Traffic-Spalte (Kopf + Werte). Reine CSS-Aenderung. build ok. --- src/renderer/styles.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/renderer/styles.css b/src/renderer/styles.css index d93b8a6..453ab6b 100644 --- a/src/renderer/styles.css +++ b/src/renderer/styles.css @@ -3319,6 +3319,8 @@ td { .acct2-mode { font-size: 11px; color: var(--muted); } .acct2-traffic, .acct2-expiry { font-variant-numeric: tabular-nums; color: var(--muted); } +.acct2-head > span:nth-child(3), +.acct2-traffic { text-align: center; } .acct2-user { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .acct2-status .account-validity-badge { margin-top: 0; } .acct2-nostatus { color: var(--muted); opacity: 0.6; font-variant-numeric: tabular-nums; }