Skip to content

Commit

Permalink
Extension chrome - Block window widening
Browse files Browse the repository at this point in the history
Fixes #974
  • Loading branch information
Chralu committed Jun 13, 2024
1 parent ea29a30 commit 0315096
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/ui/widgets/components/window_size.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class WindowSize {
Size get idealSize {
if (UniversalPlatform.isLinux) return const Size(430, 850);
if (UniversalPlatform.isWeb) return const Size(500, 800);
if (UniversalPlatform.isMobile) return const Size(500, 800);
return const Size(370, 800);
}

Expand Down

0 comments on commit 0315096

Please sign in to comment.