diff options
| author | Adam <[email protected]> | 2025-11-06 06:24:39 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-11-06 09:48:50 -0600 |
| commit | 146bae82cb584c253a42ed4565d423d9cded93a6 (patch) | |
| tree | 08b9d748670d5bd5cd9956a80d547cbef15b65e5 /packages/ui/src/components | |
| parent | ab345cf0dac4378163292a5fb99b102bb2922ee1 (diff) | |
| download | opencode-146bae82cb584c253a42ed4565d423d9cded93a6.tar.gz opencode-146bae82cb584c253a42ed4565d423d9cded93a6.zip | |
fix(desktop): button styles
Diffstat (limited to 'packages/ui/src/components')
| -rw-r--r-- | packages/ui/src/components/button.css | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/packages/ui/src/components/button.css b/packages/ui/src/components/button.css index 112d648e6..f5a08067a 100644 --- a/packages/ui/src/components/button.css +++ b/packages/ui/src/components/button.css @@ -62,15 +62,13 @@ color: var(--text-strong); &:hover:not(:disabled) { - background-color: var(--surface-hover); + background-color: var(--button-ghost-hover); } &:active:not(:disabled) { - border-color: var(--border-active); - background-color: var(--surface-active); + background-color: var(--button-ghost-hover-2); } &:focus:not(:disabled) { - border-color: var(--border-focus); - background-color: var(--surface-focus); + background-color: var(--button-ghost-hover); } } |
