66 lines
905 B
SCSS
66 lines
905 B
SCSS
.main-scroll-area {
|
|
flex-basis: 0;
|
|
height: 0;
|
|
min-height: 0;
|
|
overscroll-behavior-y: contain;
|
|
}
|
|
|
|
.discovery-shell {
|
|
position: relative;
|
|
flex-basis: 0;
|
|
height: 0;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
background: $theme-color-50;
|
|
}
|
|
|
|
.home-welcome-panel {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1;
|
|
width: 100%;
|
|
height: 92px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.discovery-panel {
|
|
position: absolute;
|
|
top: 92px;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 2;
|
|
min-height: 0;
|
|
overflow: hidden;
|
|
background: $theme-color-50;
|
|
transition: top 240ms ease;
|
|
}
|
|
|
|
.discovery-panel.is-collapsed {
|
|
top: 0;
|
|
}
|
|
|
|
.home-hero {
|
|
height: 140px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.home-hero-bg {
|
|
height: 140px;
|
|
}
|
|
|
|
.home-hero-sprite {
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 0;
|
|
z-index: 4;
|
|
transform: translateX(-50%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.home-tabs-layer {
|
|
z-index: 3;
|
|
}
|