bitwarden-android/src/App/Controls/EntryLabel.cs

14 lines
277 B
C#
Raw Normal View History

2016-05-10 06:25:37 +03:00
using Xamarin.Forms;
namespace Bit.App.Controls
{
public class EntryLabel : Label
{
public EntryLabel()
{
2016-06-28 03:56:59 +03:00
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label));
2016-05-10 06:25:37 +03:00
TextColor = Color.FromHex("777777");
}
}
}