mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
20 lines
347 B
SCSS
20 lines
347 B
SCSS
@import "./Globals.scss";
|
|
|
|
#background {
|
|
position: fixed;
|
|
height: 100vh;
|
|
width: 100%;
|
|
background: linear-gradient(320deg, #151022, #1f0d2a, #100214);
|
|
z-index: -1;
|
|
}
|
|
|
|
#wrapper {
|
|
width: calc(100% - #{$sidebar-width});
|
|
float: right;
|
|
height: 100%;
|
|
}
|
|
|
|
#page {
|
|
margin-top: $header-height;
|
|
height: calc(100% - #{$header-height});
|
|
} |