diff options
| author | Aaron Iker <[email protected]> | 2026-01-08 16:02:04 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-08 09:02:04 -0600 |
| commit | 61aeb2a2a741468b42ddde2cfb1f08897d9ab648 (patch) | |
| tree | a7b1dc92457f922e9ef0c0153fb0f9b4e6a1f4d4 /packages/ui/src/components/dialog.css | |
| parent | 4b0f7b82ba998af8c564426f003486c19f7b3676 (diff) | |
| download | opencode-61aeb2a2a741468b42ddde2cfb1f08897d9ab648.tar.gz opencode-61aeb2a2a741468b42ddde2cfb1f08897d9ab648.zip | |
feat: Polish dialog, popover shadows & borders, add missing provider logos (#7326)
Diffstat (limited to 'packages/ui/src/components/dialog.css')
| -rw-r--r-- | packages/ui/src/components/dialog.css | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/packages/ui/src/components/dialog.css b/packages/ui/src/components/dialog.css index ff8587421..7a94bb2ee 100644 --- a/packages/ui/src/components/dialog.css +++ b/packages/ui/src/components/dialog.css @@ -43,14 +43,15 @@ /* padding: 8px; */ /* padding: 8px 8px 0 8px; */ - border: 1px solid hsl(from var(--border-base) h s l / 0.2); + border: 1px solid + light-dark( + color-mix(in oklch, var(--border-base) 30%, transparent), + color-mix(in oklch, var(--border-base) 50%, transparent) + ); border-radius: var(--radius-xl); background: var(--surface-raised-stronger-non-alpha); background-clip: padding-box; - box-shadow: - 0 15px 45px 0 rgba(19, 16, 16, 0.35), - 0 3.35px 10.051px 0 rgba(19, 16, 16, 0.25), - 0 0.998px 2.993px 0 rgba(19, 16, 16, 0.2); + box-shadow: var(--shadow-lg); /* animation: contentHide 300ms ease-in forwards; */ /**/ |
