Files
2024-10-02 16:14:15 +02:00

23 lines
521 B
C#

namespace GPW.CORE.ADM.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
}
}