hide header on case open
This commit is contained in:
parent
ecd784ad42
commit
dbb93ba802
1 changed files with 8 additions and 4 deletions
|
|
@ -47,7 +47,7 @@ const onClose = () => router.push('/')
|
||||||
padding-top: desktop-vw(27px);
|
padding-top: desktop-vw(27px);
|
||||||
|
|
||||||
.meta {
|
.meta {
|
||||||
grid-column: 4 / span 2;
|
grid-column: 1 / span 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.window {
|
.window {
|
||||||
|
|
@ -78,7 +78,7 @@ const onClose = () => router.push('/')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.content {
|
&.content {
|
||||||
grid-column: 6 / span 9;
|
grid-column: 3 / -2;
|
||||||
|
|
||||||
.lenis {
|
.lenis {
|
||||||
max-height: desktop-vh(950px);
|
max-height: desktop-vh(950px);
|
||||||
|
|
@ -148,8 +148,12 @@ const onClose = () => router.push('/')
|
||||||
}
|
}
|
||||||
.close {
|
.close {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 1em;
|
z-index: 5;
|
||||||
right: 1em;
|
top: 0.75em;
|
||||||
|
right: 0.75em;
|
||||||
|
background: var(--theme-bg);
|
||||||
|
padding: mobile-vw(9px);
|
||||||
|
border-radius: mobile-vw(16px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue