You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
261 B
17 lines
261 B
2 years ago
|
using Connected.Utilities;
|
||
|
|
||
|
namespace Connected.Components;
|
||
|
|
||
|
public partial class Layout : DrawerContainer
|
||
|
{
|
||
|
protected override string Classname =>
|
||
|
new CssBuilder("mud-layout")
|
||
|
.AddClass(base.Classname)
|
||
|
.Build();
|
||
|
|
||
|
public Layout()
|
||
|
{
|
||
|
Fixed = true;
|
||
|
}
|
||
|
}
|