From 1cc09bb1c063786458df6ac683b837ed0978f343 Mon Sep 17 00:00:00 2001 From: oliverhnat Date: Mon, 1 Dec 2025 15:55:20 +0100 Subject: [PATCH] fix(worterbuch): make transcribed text a bit larger --- WorterBuch/VocabularyFieldCell.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WorterBuch/VocabularyFieldCell.swift b/WorterBuch/VocabularyFieldCell.swift index c2cf96b..62e1140 100644 --- a/WorterBuch/VocabularyFieldCell.swift +++ b/WorterBuch/VocabularyFieldCell.swift @@ -37,11 +37,11 @@ struct VocabularyFieldCell: View { // Transcribed text Text(text.isEmpty ? " " : text.lowercased()) - .font(.caption) + .font(.body) .foregroundColor(.primary) .lineLimit(2) .frame(maxWidth: .infinity, alignment: .leading) - .frame(height: 30) + .frame(height: 40) } .padding(8) .background(Color(.systemBackground))