Skip to content
Merged
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
6 changes: 5 additions & 1 deletion src/components/app/Details.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
display: flex;

/* If .Details is squished to a very small size between the sidebar and/or bottom bar,
don't spill out our contents over those other elements. */
don't spill out our contents over those other elements. overflow: clip isn't a
scroll container though, so it doesn't zero out the flex automatic minimum size:
without min-width: 0, a wide child forces .Details past its container width and
overflows the whole viewport. */
overflow: clip;
min-width: 0;
flex: 1;
flex-direction: column;
}
Expand Down
Loading