From a1eb99a7715f2d9d5d2c7501a2387774c8b2e753 Mon Sep 17 00:00:00 2001 From: wonder Date: Sun, 31 May 2026 00:18:34 +0800 Subject: [PATCH] fix: keep page indicators visible but smaller in header --- styles/index.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/styles/index.css b/styles/index.css index 68b69eb..fee0537 100644 --- a/styles/index.css +++ b/styles/index.css @@ -8,11 +8,17 @@ header .flex-1 { text-overflow: ellipsis; white-space: nowrap; min-width: 0; - max-width: 150px; + padding: 0.15rem 0.25rem; } -header .flex-1 > div { +header .flex-1 > div:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; + font-size: 0.7rem; +} + +header .flex-1 > div:last-child { + font-size: 0.5rem; + line-height: 1; }