From e8cb48b6d087570acd3cd66d0b2784943d7775b0 Mon Sep 17 00:00:00 2001 From: Robin Kutesa Date: Thu, 21 May 2026 14:20:33 +0300 Subject: [PATCH] =?UTF-8?q?Scale=20storage=20stat=20card=20values=20to=20m?= =?UTF-8?q?atch=20design=20=E2=80=94=2036pt=20rounded?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 26pt semibold monospaced → 36pt semibold rounded, matching the screenshot proportions. Removed monospacedDigit, increased vertical cell padding to 22pt. Co-Authored-By: Kutesir Co-Authored-By: Sentry --- Features/Backup/BackupView.swift | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Features/Backup/BackupView.swift b/Features/Backup/BackupView.swift index 993ca58..6c33324 100644 --- a/Features/Backup/BackupView.swift +++ b/Features/Backup/BackupView.swift @@ -998,19 +998,17 @@ struct BackupView: View { // MARK: — Storage helpers private func storageStat(_ value: String, label: String, color: Color) -> some View { - VStack(spacing: 5) { + VStack(spacing: 6) { Text(value) - .font(.system(size: 26, weight: .semibold)) + .font(.system(size: 36, weight: .semibold, design: .rounded)) .foregroundStyle(color) - .monospacedDigit() - .kerning(-0.5) Text(label) - .font(.system(size: 9, weight: .regular, design: .monospaced)) + .font(.system(size: 10, weight: .regular, design: .monospaced)) .foregroundStyle(AppTheme.inkQuaternary) .tracking(1.5) } .frame(maxWidth: .infinity) - .padding(.vertical, 18) + .padding(.vertical, 22) } private func storageLegend(color: Color, label: String) -> some View {