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 {