PWD-1: modify text styling

This commit is contained in:
Markus Thielker 2025-01-24 13:43:33 +01:00
parent 6b1be3378a
commit d2c1f1dc22
No known key found for this signature in database

View file

@ -25,7 +25,13 @@ struct DetailView: View {
var body: some View {
VStack {
Text("Enter the password for \(viewModel.password.name) and submit with \"Enter\"")
VStack {
Text(viewModel.password.name)
.font(.title)
.foregroundColor(.primary)
Text("Enter the password and submit with \"Enter\"")
.font(.title3)
}
Form {
SecureField("", text: $value)
.textFieldStyle(PwdTextFieldStyle())