Unify styling

This commit is contained in:
Hillel Coren 2020-12-07 12:06:36 +02:00
parent 7c6e6e6651
commit 3d61c084ee
3 changed files with 3 additions and 3 deletions

View File

@ -685,7 +685,7 @@ class SidebarFooter extends StatelessWidget {
onTap: () => store.dispatch(
UpdateUserPreferences(sidebar: AppSidebar.menu)),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 12),
padding: const EdgeInsets.symmetric(horizontal: 8),
child: Icon(Icons.chevron_left),
),
),

View File

@ -47,7 +47,7 @@ class InvoiceEditFooter extends StatelessWidget {
onTap: () =>
store.dispatch(ToggleEditorLayout(EntityType.invoice)),
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 12),
padding: const EdgeInsets.symmetric(horizontal: 8),
child: Icon(
showSidebar ? Icons.chevron_left : Icons.chevron_right),
),