diff --git a/src/App/Controls/VaultGroupingViewCell.cs b/src/App/Controls/VaultGroupingViewCell.cs index f03c0b8ec..626e9141d 100644 --- a/src/App/Controls/VaultGroupingViewCell.cs +++ b/src/App/Controls/VaultGroupingViewCell.cs @@ -44,7 +44,7 @@ namespace Bit.App.Controls var stackLayout = new StackLayout { Spacing = 0, - Padding = new Thickness(16, 10, 27, 10), + Padding = new Thickness(16, 10), Children = { Icon, Label, CountLabel }, Orientation = StackOrientation.Horizontal }; diff --git a/src/App/Pages/Vault/VaultListCiphersPage.cs b/src/App/Pages/Vault/VaultListCiphersPage.cs index 6ae6c4286..4c79a500a 100644 --- a/src/App/Pages/Vault/VaultListCiphersPage.cs +++ b/src/App/Pages/Vault/VaultListCiphersPage.cs @@ -80,7 +80,7 @@ namespace Bit.App.Pages ItemsSource = PresentationSections, HasUnevenRows = true, GroupHeaderTemplate = new DataTemplate(() => new SectionHeaderViewCell(nameof(Section.Name), - nameof(Section.Count), new Thickness(16, 8, 27, 8))), + nameof(Section.Count))), GroupShortNameBinding = new Binding(nameof(Section.Name)), ItemTemplate = new DataTemplate(() => new VaultListViewCell( (Cipher c) => Helpers.CipherMoreClickedAsync(this, c, !string.IsNullOrWhiteSpace(_uri)))) diff --git a/src/App/Pages/Vault/VaultListGroupingsPage.cs b/src/App/Pages/Vault/VaultListGroupingsPage.cs index f9bc9a3e4..0caf3707e 100644 --- a/src/App/Pages/Vault/VaultListGroupingsPage.cs +++ b/src/App/Pages/Vault/VaultListGroupingsPage.cs @@ -72,7 +72,7 @@ namespace Bit.App.Pages ItemsSource = PresentationSections, HasUnevenRows = true, GroupHeaderTemplate = new DataTemplate(() => new SectionHeaderViewCell( - nameof(Section.Name), nameof(Section.Count), new Thickness(16, 12, 27, 12))), + nameof(Section.Name), nameof(Section.Count), new Thickness(16, 12))), ItemTemplate = new GroupingOrCipherDataTemplateSelector(this) };