fix(worterbuch): make transcribed text a bit larger

This commit is contained in:
2025-12-01 15:55:20 +01:00
parent b635a7f025
commit 1cc09bb1c0

View File

@@ -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))