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
13 changes: 13 additions & 0 deletions web/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ body,
font-family: var(--font-sans);
font-size: 15px;
overscroll-behavior: none;
/* nothing here scrolls sideways at the document level: the panes that need
it scroll inside themselves, so any horizontal give is an overflowing
child dragging the whole page with it */
overflow-x: hidden;
max-width: 100%;
}

.app {
Expand Down Expand Up @@ -638,6 +643,9 @@ body,
gap: 12px;
font-size: 12px;
margin-left: auto;
/* a flex item defaults to min-width:auto, so this cluster refuses to shrink
below its contents and widens the document past the viewport */
min-width: 0;
}

.banner-usage {
Expand Down Expand Up @@ -795,6 +803,11 @@ body,
.banner-status {
padding: 2px 8px;
font-size: 12px;
/* the longest thing in the banner, and the one that can safely be clipped */
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.banner-status.connected {
Expand Down