TF-4093 Make interface more compact
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
|
||||
import 'package:core/presentation/extensions/color_extension.dart';
|
||||
import 'package:core/presentation/utils/theme_utils.dart';
|
||||
import 'package:core/utils/platform_info.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class EmailSubjectStyles {
|
||||
static int? maxLines = PlatformInfo.isWeb ? 2 : null;
|
||||
|
||||
static const Color cursorColor = AppColor.colorTextButton;
|
||||
static const EdgeInsetsGeometry padding = EdgeInsets.all(16);
|
||||
static const EdgeInsetsGeometry mobilePadding = EdgeInsets.all(12);
|
||||
|
||||
static const EdgeInsetsGeometry padding = EdgeInsets.symmetric(vertical: 12, horizontal: 16);
|
||||
static final TextStyle textStyle = ThemeUtils.textStyleInter500().copyWith(
|
||||
overflow: PlatformInfo.isWeb ? TextOverflow.ellipsis : null,
|
||||
color: Colors.black,
|
||||
fontSize: 24,
|
||||
height: 1,
|
||||
letterSpacing: -0.24,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user