increased margin

This commit is contained in:
NicKoehler 2023-02-15 14:14:21 +01:00
parent 84f97fbf1f
commit eac6dae3a7
No known key found for this signature in database
GPG Key ID: BAE01394EB51AC58
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ class MenuButton extends StatefulWidget {
required this.icon,
this.splashColor,
this.tooltip = "",
this.padding = const EdgeInsets.symmetric(horizontal: 2.5, vertical: 5),
this.padding = const EdgeInsets.symmetric(horizontal: 3, vertical: 6),
this.enableFeedback = true,
});

View File

@ -452,9 +452,9 @@ class _RemoteMenubarState extends State<RemoteMenubar> {
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
SizedBox(width: 2.5),
SizedBox(width: 3),
...menubarItems,
SizedBox(width: 2.5)
SizedBox(width: 3)
],
),
),