diff --git a/lib/features/mailbox/presentation/mailbox_view_web.dart b/lib/features/mailbox/presentation/mailbox_view_web.dart index 14847e24f..208e9a795 100644 --- a/lib/features/mailbox/presentation/mailbox_view_web.dart +++ b/lib/features/mailbox/presentation/mailbox_view_web.dart @@ -23,6 +23,9 @@ class MailboxView extends BaseMailboxView { Widget build(BuildContext context) { return Drawer( elevation: controller.responsiveUtils.isDesktop(context) ? 0 : 16.0, + shape: controller.responsiveUtils.isDesktop(context) + ? const RoundedRectangleBorder() + : null, child: Scaffold( backgroundColor: controller.responsiveUtils.isWebDesktop(context) ? AppColor.colorBgDesktop