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
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@
gap: var(--wpds-dimension-padding-lg);
}

/* User bubbles act as turn anchors; give them generous breathing room above
and below so the user's prompt stands apart from the assistant response. */
/* User bubbles act as turn anchors. No top padding — the space above comes
from the preceding turn's in-flow copy-button line plus the root gap. The
bottom padding mirrors that copy line's height (1.75rem, keep in sync with
the copy-button size) so every turn is followed by the same amount of
space. */
.userTurn {
display: flex;
flex-direction: column;
margin-right: calc(-1 * var(--classic-composer-shell-inline-padding));
padding: var(--wpds-dimension-padding-xl) 0;
}

.userTurn:first-child {
padding-top: 0;
padding: 0 0 1.75rem;
}

.userAttachments {
Expand Down
Loading