mirror of
https://github.com/bitwarden/android.git
synced 2024-11-02 08:03:56 +03:00
14 lines
228 B
C#
14 lines
228 B
C#
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Controls
|
|||
|
{
|
|||
|
public class EntryLabel : Label
|
|||
|
{
|
|||
|
public EntryLabel()
|
|||
|
{
|
|||
|
FontSize = 14;
|
|||
|
TextColor = Color.FromHex("777777");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|