FIX: topic progress wrapper positioning regression

Followup to 94ed54a616
This commit is contained in:
Penar Musaraj 2020-09-15 09:38:06 -04:00
parent 02e6f4c5d4
commit 6d7b8a71c0
No known key found for this signature in database
GPG Key ID: E390435D881FF0F7

View File

@ -85,6 +85,14 @@
display: flex;
justify-content: flex-end;
z-index: z("timeline");
// max-width + bottom + left/right makes this element take up the whole width
// albeit as a transparent row, but we disable pointer-events to allow user to
// interact with visible elements at bottom of viewport
pointer-events: none;
> * {
// and then we reset for its children
pointer-events: auto;
}
&.docked {
position: absolute;
bottom: -70px;