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

14 lines
228 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()
{
FontSize = 14;
TextColor = Color.FromHex("777777");
}
}
}