commit d708b3109251bc449d38c9f68625ff584efca395
parent 4ceabb65609b5e6a84704ab38ec5a3601249e32a
Author: Marc Stibane <marc@taler.net>
Date: Wed, 26 Jun 2024 15:22:35 +0200
QR button smaller
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/TalerWallet1/Views/HelperViews/Buttons.swift b/TalerWallet1/Views/HelperViews/Buttons.swift
@@ -37,11 +37,11 @@ struct QRButton : View {
Button(action: action) {
if !minimalistic {
Text("Scan QR")
- .talerFont(.title)
+ .talerFont(.title3)
}
Image(systemName: "qrcode.viewfinder")
+ .talerFont(.title2)
}
- .talerFont(.title)
.accessibilityLabel("Scan QR codes")
}
}