mirror of
https://github.com/bitwarden/android.git
synced 2026-05-22 04:22:11 -05:00
15 lines
246 B
C#
15 lines
246 B
C#
namespace Bit.App.Controls
|
|
{
|
|
public class MonoEntry : Entry
|
|
{
|
|
public MonoEntry()
|
|
{
|
|
#if ANDROID
|
|
FontFamily = "RobotoMono_Regular";
|
|
#elif IOS
|
|
FontFamily = "Menlo-Regular";
|
|
#endif
|
|
}
|
|
}
|
|
}
|