fix font size

This commit is contained in:
Pete Matsyburka
2024-10-18 16:38:51 +03:00
parent ce70016603
commit 1fc1e9af16
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -405,7 +405,8 @@ export default {
}
if (this.field.preferences?.font_size) {
style.fontSize = this.field.preferences.font_size + 'pt'
style.fontSize = `clamp(4pt, 1.6vw, ${this.field.preferences.font_size}pt)`
style.lineHeight = `clamp(6pt, 2.0vw, ${parseInt(this.field.preferences.font_size) + 3}pt)`
}
return style