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
5 changes: 4 additions & 1 deletion apps/web/src/pages/account/workspaces/[name]/settings.astro
Original file line number Diff line number Diff line change
Expand Up @@ -502,13 +502,16 @@ const tip = {
display: flex;
align-items: center;
gap: 16px;
/* Sized to its contents — a compact centered pill, never the full
viewport width. The max-width only reins it in on very small screens,
where the row wraps instead of overflowing. */
width: max-content;
max-width: calc(100vw - 32px);
padding: 10px 10px 10px 18px;
background: var(--panel);
border: 1px solid var(--line);
border-radius: var(--radius-md);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
white-space: nowrap;
}
.cs-savebar__msg {
font: 13px var(--sans);
Expand Down
Loading