mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-13 13:19:42 -06:00
39 lines
727 B
CSS
39 lines
727 B
CSS
.home-layout {
|
|
position: relative;
|
|
min-height: 100vh;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
padding: var(--env-var-spacing-2);
|
|
}
|
|
|
|
.home-layout aside {
|
|
position: sticky;
|
|
top: var(--env-var-spacing-2);
|
|
left: 0;
|
|
|
|
height: calc(100vh - var(--env-var-spacing-2) * 2);
|
|
max-width: var(--env-var-side-bar-width);
|
|
}
|
|
|
|
.home-layout > div {
|
|
min-height: calc(100vh - var(--env-var-spacing-2) * 2);
|
|
flex: 1;
|
|
}
|
|
|
|
.home-layout > div:has(> [class*="fallback__"]) .background-pattern-svg {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 0;
|
|
|
|
width: 100%;
|
|
max-width: 800px;
|
|
height: 100%;
|
|
max-height: 800px;
|
|
|
|
background-position: center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|