diff --git a/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift b/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift index 0b12b5a9..d8c114f8 100644 --- a/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift +++ b/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift @@ -209,6 +209,9 @@ public typealias ActionBlock = () -> () if let newFont = UIFont(name: fontName, size: fontSize ?? standardFontSize) { font = newFont } + } else if let fontSize = viewModel.fontSize { + standardFontSize = fontSize + font = textStyle.font.withSize(fontSize) } if let color = viewModel.textColor {