fix(core): 🐛 hide sticky header overflow

This commit is contained in:
alistair3149 2022-10-25 15:03:16 -04:00
parent f1fb5537c9
commit 6b9fe9c2fa
No known key found for this signature in database

View file

@ -26,6 +26,16 @@
.mw-indicators { .mw-indicators {
display: none; display: none;
} }
// HACK: Hide overflow
&:before {
position: absolute;
right: ~'calc( var(--padding-page ) * -1 )';
left: ~'calc( var(--padding-page ) * -1 )';
height: 100%;
background-color: var( --color-surface-0 );
content: '';
}
} }
.page-heading { .page-heading {