diff --git a/web/repertory/lib/screens/add_mount_screen.dart b/web/repertory/lib/screens/add_mount_screen.dart index ed0688c4..ac2ec6cc 100644 --- a/web/repertory/lib/screens/add_mount_screen.dart +++ b/web/repertory/lib/screens/add_mount_screen.dart @@ -56,6 +56,7 @@ class _AddMountScreenState extends State { mainAxisSize: MainAxisSize.max, children: [ Card( + margin: EdgeInsets.all(0.0), child: Padding( padding: const EdgeInsets.all(constants.padding), child: Row( @@ -84,10 +85,9 @@ class _AddMountScreenState extends State { ), ), ), - if (_mountType.isNotEmpty) - const SizedBox(height: constants.padding), if (_mountType.isNotEmpty) Card( + margin: EdgeInsets.all(0.0), child: Padding( padding: const EdgeInsets.all(constants.padding), child: Column( @@ -113,6 +113,7 @@ class _AddMountScreenState extends State { if (_mount != null) Expanded( child: Card( + margin: EdgeInsets.all(0.0), child: Padding( padding: const EdgeInsets.all(constants.padding), child: MountSettingsWidget( @@ -124,6 +125,7 @@ class _AddMountScreenState extends State { ), ), ), + if (_mount != null) const SizedBox(height: constants.padding), if (_mount != null) Builder( builder: (context) {