TF-3410 Fix wrong text style email subject in EmailView

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-03-12 15:08:19 +07:00
committed by Dat H. Pham
parent 344ac33de2
commit 01f6a6be67
3 changed files with 14 additions and 9 deletions
@@ -4,13 +4,9 @@ import 'package:core/utils/platform_info.dart';
import 'package:flutter/material.dart';
class EmailSubjectStyles {
static const double textSize = 20;
static int? maxLines = PlatformInfo.isWeb ? 2 : null;
static const Color textColor = AppColor.colorNameEmail;
static const Color cursorColor = AppColor.colorTextButton;
static const FontWeight fontWeight = FontWeight.w500;
static const EdgeInsetsGeometry padding = EdgeInsets.symmetric(vertical: 12, horizontal: 16);
}