mirror of
https://github.com/bitwarden/mobile
synced 2025-12-23 03:33:59 +00:00
padding option for form entry cell. increased padding on login and register forms. reduced large font size on iOS
This commit is contained in:
@@ -51,8 +51,7 @@ namespace Bit.App.Pages
|
||||
Command = new Command(async () => await RegisterAsync()),
|
||||
VerticalOptions = LayoutOptions.End,
|
||||
HorizontalOptions = LayoutOptions.Fill,
|
||||
Style = (Style)Application.Current.Resources["btn-primary"],
|
||||
FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label))
|
||||
Style = (Style)Application.Current.Resources["btn-primary"]
|
||||
};
|
||||
|
||||
var loginButton = new Button
|
||||
@@ -61,8 +60,7 @@ namespace Bit.App.Pages
|
||||
Command = new Command(async () => await LoginAsync()),
|
||||
VerticalOptions = LayoutOptions.End,
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
|
||||
HorizontalOptions = LayoutOptions.Fill,
|
||||
FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label))
|
||||
HorizontalOptions = LayoutOptions.Fill
|
||||
};
|
||||
|
||||
var buttonStackLayout = new StackLayout
|
||||
|
||||
Reference in New Issue
Block a user