From 91879f2411b139ff0731fcba939d2734647e28a5 Mon Sep 17 00:00:00 2001 From: Robin Kutesa Date: Thu, 21 May 2026 14:36:28 +0300 Subject: [PATCH] =?UTF-8?q?Revert=20stats=20strip=20to=20light=20weight=20?= =?UTF-8?q?=E2=80=94=2030pt=20light=20monospacedDigit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Semibold rounded was wrong. Values are now 30pt light matching the thin numeral style shown in the design screenshot. Co-Authored-By: Kutesir Co-Authored-By: Sentry --- Features/Backup/BackupView.swift | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Features/Backup/BackupView.swift b/Features/Backup/BackupView.swift index 751e7c6..4c314ab 100644 --- a/Features/Backup/BackupView.swift +++ b/Features/Backup/BackupView.swift @@ -376,22 +376,23 @@ struct BackupView: View { } private func compactStat(_ value: String, label: String, color: Color) -> some View { - VStack(spacing: 5) { + VStack(spacing: 4) { Text(value) - .font(.system(size: 32, weight: .semibold, design: .rounded)) + .font(.system(size: 30, weight: .light)) .foregroundStyle(color) + .monospacedDigit() Text(label) - .font(.system(size: 11, weight: .regular)) + .font(.system(size: 10, weight: .regular)) .foregroundStyle(AppTheme.inkQuaternary) } .frame(maxWidth: .infinity) - .padding(.vertical, 10) + .padding(.vertical, 8) } private var statDivider: some View { Rectangle() .fill(Color(red: 0.88, green: 0.88, blue: 0.88)) - .frame(width: 1, height: 44) + .frame(width: 1, height: 36) } private var thinDivider: some View {