TF-3760 Change style of input dialog on web

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-06-02 01:40:13 +07:00
committed by Dat H. Pham
parent 25c2eb0ace
commit 537889f934
7 changed files with 297 additions and 175 deletions
@@ -23,6 +23,7 @@ class TMailContainerWidget extends StatelessWidget {
final List<BoxShadow>? boxShadow;
final BoxBorder? border;
final Color? hoverColor;
final Alignment? alignment;
const TMailContainerWidget({
super.key,
@@ -43,6 +44,7 @@ class TMailContainerWidget extends StatelessWidget {
this.margin,
this.border,
this.hoverColor,
this.alignment,
});
@override
@@ -61,6 +63,7 @@ class TMailContainerWidget extends StatelessWidget {
maxHeight: maxHeight,
minWidth: minWidth,
),
alignment: alignment,
padding: padding ?? const EdgeInsetsDirectional.all(8),
child: child,
);