mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
13 lines
277 B
C#
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");
|
|
}
|
|
}
|
|
}
|