TF-3704 Fix style label mailbox item

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-05-09 11:30:32 +07:00
committed by Dat H. Pham
parent 26704457c1
commit 52ef2db300
3 changed files with 7 additions and 17 deletions
+3 -2
View File
@@ -204,12 +204,13 @@ class ThemeUtils {
static TextStyle textStyleInter700({
Color? color,
double? fontSize,
}) => TextStyle(
fontFamily: ConstantsUI.fontApp,
fontWeight: FontWeight.w700,
letterSpacing: 0.0,
fontSize: 15,
height: 20 / 15,
fontSize: fontSize ?? 15,
height: 20 / (fontSize ?? 15),
color: color,
);