14 lines
399 B
C#
14 lines
399 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Pixiview.UI
|
|
{
|
|
public static class StyleDefinition
|
|
{
|
|
public static readonly double FontSizeTitle = 18.0;
|
|
public static readonly double FontSizeTitleIcon = 24.0;
|
|
|
|
public static readonly Thickness HorizonLeft10 = new Thickness(10, 0, 0, 0);
|
|
public static readonly Thickness HorizonRight10 = new Thickness(0, 0, 10, 0);
|
|
}
|
|
}
|