Files
WatchIt/WatchIt.Website/Components/Layout/BaseLayout.razor

16 lines
382 B
Plaintext

@using Blazorise.Snackbar
@inherits LayoutComponentBase
<CascadingValue Value="@(this)">
@(Body)
<SnackbarStack @ref="SnackbarStack" Location="SnackbarStackLocation.Bottom" />
<style>
/* TAGS */
body {
background-image: url('@(Background?.ToString() ?? "assets/placeholders/background.jpg")');
}
</style>
</CascadingValue>