mirror of
https://github.com/bitwarden/mobile
synced 2025-12-31 23:53:25 +00:00
App: Controls: Improve the vault view images (#240)
* App: Controls: Improve the vault view images Make the buttons smaller and ensure the background is transparent. Signed-off-by: Alistair Francis <alistair@alistair23.me> * UWP.Images: Use smaller size images Signed-off-by: Alistair Francis <alistair@alistair23.me> * UWP.Images: Remove unused image Signed-off-by: Alistair Francis <alistair@alistair23.me>
This commit is contained in:
committed by
Kyle Spearrin
parent
694efb9508
commit
ca03a5ecf4
@@ -114,6 +114,19 @@ namespace Bit.App.Controls
|
||||
|
||||
containerStackLayout.AdjustPaddingForDevice();
|
||||
}
|
||||
else if(Device.RuntimePlatform == Device.UWP)
|
||||
{
|
||||
buttonStackLayout.Spacing = 0;
|
||||
|
||||
if(Button1 != null)
|
||||
{
|
||||
Button1.BackgroundColor = Color.Transparent;
|
||||
}
|
||||
if(Button2 != null)
|
||||
{
|
||||
Button2.BackgroundColor = Color.Transparent;
|
||||
}
|
||||
}
|
||||
|
||||
if(Sub != null && Button1 != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user