1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

use bold colored headers

This commit is contained in:
Kyle Spearrin 2019-06-20 17:26:42 -04:00
parent 44782b1ddf
commit 3475d39f37
2 changed files with 5 additions and 1 deletions

View File

@ -73,9 +73,11 @@
<Style TargetType="Label"
Class="box-header-platform">
<Setter Property="TextColor"
Value="{StaticResource MutedColor}" />
Value="{StaticResource BoxHeaderTextColor}" />
<Setter Property="FontSize"
Value="Small" />
<Setter Property="FontAttributes"
Value="Bold" />
</Style>
<Style TargetType="Button"
ApplyToDerivedTypes="True"

View File

@ -25,10 +25,12 @@ namespace Bit.App.Utilities
public object ProvideValue(IServiceProvider serviceProvider)
{
var val = _i18nService.T(Id, P1, P2, P3);
/*
if(Header && Device.RuntimePlatform == Device.iOS)
{
return val.ToUpper();
}
*/
return val;
}
}