Skip to content

Commit 3becc10

Browse files
Ensure banner remains sticky
1 parent 9161cb2 commit 3becc10

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

public/assets/scripts/custom-elements/map.styles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { css } from "lit";
22

33
export default css`
44
:host {
5-
block-size: 100%;
5+
block-size: 100dvh;
66
}
77
88
#map {

public/assets/styles/base/sections.css

+2-5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
}
1212

1313
html {
14+
block-size: 100vh;
1415
text-size-adjust: none;
1516

1617
&:focus-within {
@@ -24,16 +25,12 @@ html {
2425

2526
body {
2627
background-color: var(--color-neutral-darkest);
27-
block-size: 100dvh;
2828
color: var(--color-neutral-darkest);
2929
display: flex;
3030
flex-direction: column;
3131
font-family: var(--font-family-sans);
3232
margin: 0;
33-
34-
&:has(dialog#navigation[open]) {
35-
overflow: hidden;
36-
}
33+
min-block-size: 100dvh;
3734
}
3835

3936
h1,

public/assets/styles/components/banner.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@
1010
display: grid;
1111
grid-template-areas: "masthead navigation search";
1212
grid-template-columns: auto 1fr auto;
13-
padding-inline: calc(var(--page-gutter) - var(--space-s));
13+
inset-block-start: 0;
14+
padding-inline: calc(var(--page-gutter) - var(--space-xs));
15+
position: sticky;
16+
z-index: 99;
1417

1518
&:has(h1) {
1619
grid-template-areas: "navigation search" "masthead masthead";
1720
grid-template-columns: auto;
21+
position: static;
1822
}
1923

2024
& div {

0 commit comments

Comments
 (0)