Closed andreystepanov closed 8 months ago
Hmmmm this might be ok for now, but the magic of 80vh
might bite us in the foot later. Seems like something we'd forget to adjust if the header ever changes height. 🤔
+1, I'm constantly battling the empty space on the bottom of the screen from this :sweat_smile: maybe I'll add a css adjustment extension to hold me over with andrey's suggestion
FWIW I had better luck limiting the height of workspace-minimap_entries
so the "close all" headers etc don't get scrolled, eye of the beholder maybe
This was fixed by #84
When minimap gets too long (while exploring big libraries like
base
) it creates some weird empty spots in UI.To fix this, we might limit
workspace-minimap
height to available viewport height (max-height: 80vh
looks ok, see screenshot).Current
With
max-height: 80vh; overflow: auto;
fix