diff options
| author | Adam <[email protected]> | 2025-12-11 11:28:34 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-11 13:42:47 -0600 |
| commit | e845eedbc325b05a19679bc439a57cc0fbf23aa3 (patch) | |
| tree | f2bd6686664870ef11aba12a9946356d9df149c4 /packages/ui/src/components/toast.css | |
| parent | 4ae7e1b19c3915e3e9b1a39195d54c4721836b03 (diff) | |
| download | opencode-e845eedbc325b05a19679bc439a57cc0fbf23aa3.tar.gz opencode-e845eedbc325b05a19679bc439a57cc0fbf23aa3.zip | |
wip(desktop): progress
Diffstat (limited to 'packages/ui/src/components/toast.css')
| -rw-r--r-- | packages/ui/src/components/toast.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/ui/src/components/toast.css b/packages/ui/src/components/toast.css index 2c55a4b06..3389f477a 100644 --- a/packages/ui/src/components/toast.css +++ b/packages/ui/src/components/toast.css @@ -120,6 +120,34 @@ margin: 0; } + [data-slot="toast-actions"] { + display: flex; + gap: 16px; + margin-top: 8px; + } + + [data-slot="toast-action"] { + background: none; + border: none; + padding: 0; + cursor: pointer; + + color: rgba(253, 252, 252, 0.94); + font-family: var(--font-family-sans); + font-size: var(--font-size-base); + font-weight: var(--font-weight-medium); + line-height: var(--line-height-large); + letter-spacing: var(--letter-spacing-normal); + + &:hover { + text-decoration: underline; + } + + &:last-child { + color: rgba(253, 249, 249, 0.5); + } + } + [data-slot="toast-close-button"] { flex-shrink: 0; } |
