Files
oqtane.framework/Oqtane.Client/Themes/Theme3/VerticalLayout.razor
2019-09-24 17:26:14 -04:00

14 lines
313 B
Plaintext

@namespace Oqtane.Themes.Theme3
@inherits ThemeBase
<div class="row px-4">
<Pane Name="Top" />
</div>
<div class="row px-4">
<Pane Name="Bottom" />
</div>
@code {
public override string Name { get { return "Vertical Layout"; } }
public override string Panes { get { return "Top;Bottom"; } }
}