wabbajack/Wabbajack.App.Blazor/Shared/MainLayout.razor.scss

20 lines
347 B
SCSS
Raw Normal View History

@import "./Globals.scss";
2022-01-09 13:33:22 +00:00
#background {
position: fixed;
height: 100vh;
width: 100%;
background: linear-gradient(320deg, #151022, #1f0d2a, #100214);
z-index: -1;
2022-01-09 13:33:22 +00:00
}
#wrapper {
width: calc(100% - #{$sidebar-width});
float: right;
height: 100%;
}
#page {
margin-top: $header-height;
height: calc(100% - #{$header-height});
2022-01-09 13:33:22 +00:00
}