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
13 changes: 13 additions & 0 deletions src/lib/styles/pages/_chat.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3745,6 +3745,19 @@
display: none;
}

/* CollapsibleText lays its viewport out as a flex column that shrink-wraps
its child, which is what gives a chat bubble its width. A log row is not
a bubble: it is a full-width block, so without this the rendered markdown
— and any code block inside it — was sized to the longest line of text
rather than to the row, leaving a JSON dump squeezed into a fraction of
the available width. */
& .ctxt,
& .ctxt-view,
& .ctxt-content {
width: 100%;
}


& pre {
scrollbar-width: none;
background:
Expand Down
Loading