Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion mobile/mobile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@
flex-flow: row wrap;
align-items: flex-start;
justify-content: flex-start;
overflow: scroll;
// overflow: scroll forces both x and y scrollbar tracks to always render,
// adding ~15px of blank space at the bottom even when content fits.
overflow-y: auto;
overflow-x: hidden;
max-height: 90vh;
// @include dropdown adds box-shadow for a compact floating box, but the
// mobile flyout is position: fixed; width: 100%, so the shadow spans the
// full viewport width and appears as a dark band below the last link.
box-shadow: none;

li {
width: 100%;
Expand Down