diff --git a/src/App/Pages/Lock/LockFingerprintPage.cs b/src/App/Pages/Lock/LockFingerprintPage.cs index 4be663220..51bcb1154 100644 --- a/src/App/Pages/Lock/LockFingerprintPage.cs +++ b/src/App/Pages/Lock/LockFingerprintPage.cs @@ -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 diff --git a/src/App/Pages/Lock/LockPasswordPage.cs b/src/App/Pages/Lock/LockPasswordPage.cs index 19290d4b1..3bcc74bc2 100644 --- a/src/App/Pages/Lock/LockPasswordPage.cs +++ b/src/App/Pages/Lock/LockPasswordPage.cs @@ -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 diff --git a/src/App/Pages/Lock/LockPinPage.cs b/src/App/Pages/Lock/LockPinPage.cs index f9713303d..14e27e540 100644 --- a/src/App/Pages/Lock/LockPinPage.cs +++ b/src/App/Pages/Lock/LockPinPage.cs @@ -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