From 91bb998aa3933b8e5d9142082954f0364e5f62b1 Mon Sep 17 00:00:00 2001 From: nzambello Date: Tue, 22 Aug 2023 14:26:04 +0200 Subject: [PATCH] fix: history nav text line clamp, font smaller --- app/routes/t.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/routes/t.tsx b/app/routes/t.tsx index d0dec1f..dc1fc6d 100644 --- a/app/routes/t.tsx +++ b/app/routes/t.tsx @@ -87,12 +87,14 @@ export default function TranslationsPage() {
  • - `block border-b p-4 text-xl ${isActive ? "bg-white" : ""}` + `block border-b p-4 text-sm ${isActive ? "bg-white" : ""}` } to={t.id} onClick={() => setExpanded(false)} > - [{t.lang}] {t.text} +

    + [{t.lang}] {t.text} +

  • ))