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 {