Files
2024-09-04 17:55:06 +02:00

23 lines
524 B
C#

namespace GPW.CORE.WRKLOG.Components.Layout
{
public partial class MainLayout
{
#region Protected Properties
protected bool navLarge { get; set; } = true;
protected string sideClass { get; set; } = "sidebar";
#endregion Protected Properties
#region Protected Methods
protected void UpdateNavDisplay()
{
navLarge = !navLarge;
sideClass = navLarge ? "sidebar" : "sidebarSmall";
}
#endregion Protected Methods
}
}