Skip to content

Commit

Permalink
TF-2806 Disable rounded border of mailbox list on desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 committed Jun 13, 2024
1 parent 31e1d21 commit ae8cdab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/features/mailbox/presentation/mailbox_view_web.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ae8cdab

Please sign in to comment.