Make sure that headers scrolled in view on mobile

Currently, when clicking on a ToC link in a single page web version, the title for that section is hidden under the fixed banner. We can use `scroll-margin-top` to add a little additional scroll amount to scroll the header into view. `3em` matches the current top margin of `3em` on headings and hgroups.
This commit is contained in:
Robin Whittleton 2022-10-01 09:50:13 +02:00 committed by Alex Cabal
parent 262ad7cfc3
commit 8499cfeaad

View file

@ -123,4 +123,8 @@ and will just drop this entire query together if it's included. */
margin-bottom: 2em;
margin-top: 2em;
}
[id]{
scroll-margin-top: 3em;
}
}