diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-01-29 20:30:12 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-01-29 20:30:12 -0400 |
commit | 59bf8f823d285afd17b8e65e00d6be3797e6872a (patch) | |
tree | 38fe2dbc63efa09af81bfb5d5b3f067d92039f27 /src | |
parent | 10d442d8d4fb9e1eb5ceaf31260733e5687ad84c (diff) |
css: fix bad z-index on sticky sidebar heading
Fixes #385.
Diffstat (limited to 'src')
-rw-r--r-- | src/static/site6.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/static/site6.css b/src/static/site6.css index bc4b0b81..ac7e51bf 100644 --- a/src/static/site6.css +++ b/src/static/site6.css @@ -1921,6 +1921,8 @@ main.long-content .content-sticky-heading-container .content-sticky-subheading-r .sidebar-column.sidebar.sticky-column > h1 { position: sticky; top: 0; + z-index: 2; + margin: 0 calc(-1 * var(--content-padding)); margin-bottom: 10px; |