diff --git a/src/Android/Renderers/CipherViewCellRenderer.cs b/src/Android/Renderers/CipherViewCellRenderer.cs
index 93d9a507f..d93e12172 100644
--- a/src/Android/Renderers/CipherViewCellRenderer.cs
+++ b/src/Android/Renderers/CipherViewCellRenderer.cs
@@ -124,8 +124,6 @@ namespace Bit.Droid.Renderers
SharedIcon.SetTextSize(ComplexUnitType.Sp, small);
AttachmentsIcon.SetTextSize(ComplexUnitType.Sp, small);
MoreButton.SetTextSize(ComplexUnitType.Sp, 25);
- MoreButton.SetPadding(0, 0, 0, 0);
- MoreButton.SetBackgroundColor(Xamarin.Forms.Color.Black.ToAndroid());
AddView(view);
}
diff --git a/src/Android/Resources/layout/CipherViewCell.axml b/src/Android/Resources/layout/CipherViewCell.axml
index f387217ae..951054e4e 100644
--- a/src/Android/Resources/layout/CipherViewCell.axml
+++ b/src/Android/Resources/layout/CipherViewCell.axml
@@ -6,27 +6,38 @@
android:gravity="center_vertical">
-
-
+
+ android:paddingHorizontal="7dp"
+ android:paddingVertical="5dp"
+ android:gravity="center">
+
+
+
+ android:layout_gravity="center_vertical"
+ android:paddingVertical="5dp">
@@ -65,6 +78,7 @@
android:layout_width="40dp"
android:layout_height="match_parent"
android:text=""
- android:gravity="center"/>
+ android:gravity="center"
+ android:padding="0dp" />
\ No newline at end of file
diff --git a/src/App/Styles/Base.xaml b/src/App/Styles/Base.xaml
index ef8846d2b..8871db9ef 100644
--- a/src/App/Styles/Base.xaml
+++ b/src/App/Styles/Base.xaml
@@ -178,7 +178,7 @@