bitwarden-android/src/App/Controls/EntryLabel.cs
2016-06-27 20:56:59 -04:00

13 lines
277 B
C#

using Xamarin.Forms;
namespace Bit.App.Controls
{
public class EntryLabel : Label
{
public EntryLabel()
{
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label));
TextColor = Color.FromHex("777777");
}
}
}