Files
gpw_next/GPW.CORE.SMART/Components/NavBottom.razor.cs
T
2023-01-16 09:39:27 +01:00

25 lines
600 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Web;
namespace GPW.CORE.Smart.Components
{
public partial class NavBottom
{
private string cssAll = "";
protected bool isActive { get; set; } = false;
protected void slideOut()
{
cssAll = "bottom: 15rem;";
isActive = true;
}
protected void slideIn()
{
cssAll = "bottom: 0rem;";
isActive = false;
}
}
}