25 lines
600 B
C#
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;
|
|
}
|
|
}
|
|
} |