mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-21 11:25:56 +01:00
transparent buttons for lock page
This commit is contained in:
parent
34cb04cbde
commit
e5f3be9669
@ -53,7 +53,8 @@ namespace Bit.App.Pages
|
||||
Text = AppResources.LogOut,
|
||||
Command = new Command(async () => await LogoutAsync()),
|
||||
VerticalOptions = LayoutOptions.End,
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
|
||||
BackgroundColor = Color.Transparent
|
||||
};
|
||||
|
||||
var stackLayout = new StackLayout
|
||||
|
@ -66,7 +66,8 @@ namespace Bit.App.Pages
|
||||
Text = AppResources.LogOut,
|
||||
Command = new Command(async () => await LogoutAsync()),
|
||||
VerticalOptions = LayoutOptions.End,
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
|
||||
BackgroundColor = Color.Transparent
|
||||
};
|
||||
|
||||
var stackLayout = new StackLayout
|
||||
|
@ -51,7 +51,8 @@ namespace Bit.App.Pages
|
||||
Text = AppResources.LogOut,
|
||||
Command = new Command(async () => await LogoutAsync()),
|
||||
VerticalOptions = LayoutOptions.End,
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
|
||||
BackgroundColor = Color.Transparent
|
||||
};
|
||||
|
||||
var stackLayout = new StackLayout
|
||||
|
Loading…
Reference in New Issue
Block a user