1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-27 05:33:23 +00:00

Button styling update

This commit is contained in:
Kyle Spearrin
2016-08-26 19:13:25 -04:00
parent 873ebee256
commit aac4aafde0
4 changed files with 20 additions and 17 deletions

View File

@@ -84,21 +84,21 @@ namespace Bit.App.Controls
if(Device.OS == TargetPlatform.Android)
{
if(Button1 != null)
{
Button1.Padding = new Thickness(5);
}
if(Button2 != null)
{
Button2.Padding = new Thickness(5);
}
//if(Button1 != null)
//{
// Button1.Padding = new Thickness(5);
// Button1.BackgroundColor = Color.Transparent;
//}
//if(Button2 != null)
//{
// Button2.Padding = new Thickness(5);
// Button2.BackgroundColor = Color.Transparent;
//}
containerStackLayout.AdjustPaddingForDevice();
}
containerStackLayout.Children.Add(buttonStackLayout);
View = containerStackLayout;
}