Reduce stat values 30% — 30pt → 21pt light

Applies to both compactStat (NAS/iPhone/Pending/Safe) and
storageStat (USED/FREE/JUNK).

Co-Authored-By: Kutesir <kutesir@provoc.ug>
Co-Authored-By: Sentry <sentry@provoc.ug>
This commit is contained in:
Robin Kutesa
2026-05-21 14:48:46 +03:00
parent 5f98dfc15c
commit 7a03afaea1

View File

@@ -378,7 +378,7 @@ struct BackupView: View {
private func compactStat(_ value: String, label: String, color: Color) -> some View {
VStack(spacing: 4) {
Text(value)
.font(.system(size: 30, weight: .light))
.font(.system(size: 21, weight: .light))
.foregroundStyle(color)
.monospacedDigit()
Text(label)
@@ -989,7 +989,7 @@ struct BackupView: View {
private func storageStat(_ value: String, label: String, color: Color) -> some View {
VStack(spacing: 4) {
Text(value)
.font(.system(size: 30, weight: .light))
.font(.system(size: 21, weight: .light))
.foregroundStyle(color)
.monospacedDigit()
Text(label)