From 559e6f11cc91716fdf9985a2d64c3da338d8d3d5 Mon Sep 17 00:00:00 2001 From: avivbintangaringga Date: Thu, 16 Jul 2026 10:51:53 +0700 Subject: [PATCH] fix(nix-monitor): reduce font size --- nix-monitor/panel.luau | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nix-monitor/panel.luau b/nix-monitor/panel.luau index 026f815..b901a34 100644 --- a/nix-monitor/panel.luau +++ b/nix-monitor/panel.luau @@ -57,7 +57,7 @@ local function statLabel(text, glyph: string?) if glyph ~= nil then table.insert(items, ui.glyph({ name = glyph, - size = 18 + size = 16 })) end @@ -130,12 +130,12 @@ local function render() }, { ui.label({ text = tr("panel.title"), - fontSize = 20, + fontSize = 16, }), ui.label({ text = cfg("branch"), - fontSize = 14, + fontSize = 12, }), }), ui.separator({ @@ -184,7 +184,8 @@ local function render() spacing = 4 }), ui.label({ - text = `{tr("panel.last_checked")}: {lastCheckTimeStr}` + text = `{tr("panel.last_checked")}: {lastCheckTimeStr}`, + fontSize = 12 }), ui.row({ gap = 8,