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

Button uppercase styling enforcement

This commit is contained in:
Kyle Spearrin
2016-08-24 00:07:46 -04:00
parent 2262e1c4c2
commit d4f52bce2b
8 changed files with 28 additions and 18 deletions

View File

@@ -48,7 +48,7 @@ namespace Bit.App.Pages
TextColor = Color.FromHex("333333")
};
var createAccountButton = new Button
var createAccountButton = new ExtendedButton
{
Text = "Create Account",
Command = new Command(async () => await RegisterAsync()),
@@ -58,7 +58,7 @@ namespace Bit.App.Pages
FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Button))
};
var loginButton = new Button
var loginButton = new ExtendedButton
{
Text = AppResources.LogIn,
Command = new Command(async () => await LoginAsync()),