From 7a03afaea14456db8442064aed69ce5816647ddc Mon Sep 17 00:00:00 2001 From: Robin Kutesa Date: Thu, 21 May 2026 14:48:46 +0300 Subject: [PATCH] =?UTF-8?q?Reduce=20stat=20values=2030%=20=E2=80=94=2030pt?= =?UTF-8?q?=20=E2=86=92=2021pt=20light?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Applies to both compactStat (NAS/iPhone/Pending/Safe) and storageStat (USED/FREE/JUNK). Co-Authored-By: Kutesir Co-Authored-By: Sentry --- Features/Backup/BackupView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Features/Backup/BackupView.swift b/Features/Backup/BackupView.swift index 61c3762..c197a67 100644 --- a/Features/Backup/BackupView.swift +++ b/Features/Backup/BackupView.swift @@ -378,7 +378,7 @@ struct BackupView: View { private func compactStat(_ value: String, label: String, color: Color) -> some View { VStack(spacing: 4) { Text(value) - .font(.system(size: 30, weight: .light)) + .font(.system(size: 21, weight: .light)) .foregroundStyle(color) .monospacedDigit() Text(label) @@ -989,7 +989,7 @@ struct BackupView: View { private func storageStat(_ value: String, label: String, color: Color) -> some View { VStack(spacing: 4) { Text(value) - .font(.system(size: 30, weight: .light)) + .font(.system(size: 21, weight: .light)) .foregroundStyle(color) .monospacedDigit() Text(label)