From 54b8ac59be5046e5ed94d9d5abd615afbe95baa7 Mon Sep 17 00:00:00 2001 From: Robin Kutesa Date: Thu, 21 May 2026 14:41:00 +0300 Subject: [PATCH] =?UTF-8?q?Match=20storage=20card=20font=20weight=20to=20l?= =?UTF-8?q?ight=20=E2=80=94=20consistent=20with=20stats=20strip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 36pt semibold rounded → 36pt light monospacedDigit, matching the thin numeral design language used across all widgets. Co-Authored-By: Kutesir Co-Authored-By: Sentry --- Features/Backup/BackupView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Features/Backup/BackupView.swift b/Features/Backup/BackupView.swift index 4c314ab..22f453c 100644 --- a/Features/Backup/BackupView.swift +++ b/Features/Backup/BackupView.swift @@ -998,8 +998,9 @@ struct BackupView: View { private func storageStat(_ value: String, label: String, color: Color) -> some View { VStack(spacing: 6) { Text(value) - .font(.system(size: 36, weight: .semibold, design: .rounded)) + .font(.system(size: 36, weight: .light)) .foregroundStyle(color) + .monospacedDigit() Text(label) .font(.system(size: 10, weight: .regular, design: .monospaced)) .foregroundStyle(AppTheme.inkQuaternary)