diff options
| author | David Hill <[email protected]> | 2025-10-30 22:52:56 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2025-10-30 22:52:56 +0000 |
| commit | f3c70f4ea8818bde5b1228482f72af9b10c71796 (patch) | |
| tree | 1db75ef99b5a2fe15f753b7a928497fe43b3bfb3 /packages/console/app/src/routes | |
| parent | 5d4441cd2b8413182f1ce49f19975851f9180ea9 (diff) | |
| download | opencode-f3c70f4ea8818bde5b1228482f72af9b10c71796.tar.gz opencode-f3c70f4ea8818bde5b1228482f72af9b10c71796.zip | |
Asset updates
Diffstat (limited to 'packages/console/app/src/routes')
| -rw-r--r-- | packages/console/app/src/routes/brand/index.css | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/packages/console/app/src/routes/brand/index.css b/packages/console/app/src/routes/brand/index.css index 042e26ecb..5a445f298 100644 --- a/packages/console/app/src/routes/brand/index.css +++ b/packages/console/app/src/routes/brand/index.css @@ -296,7 +296,7 @@ width: fit-content; align-items: center; gap: 12px; - transition: background-color 0.2s ease; + transition: all 0.2s ease; text-decoration: none; @@ -304,6 +304,10 @@ background: var(--color-background-strong-hover); } + &:active { + transform: scale(0.98); + } + &:disabled { opacity: 0.6; cursor: not-allowed; @@ -345,18 +349,19 @@ opacity: 0; transition: opacity 0.2s ease; - @media (max-width: 60rem) { + @media (max-width: 40rem) { position: static; opacity: 1; + background: none; margin-top: 1rem; - justify-content: center; + justify-content: start; } } [data-component="brand-grid"] > div:hover [data-component="actions"] { opacity: 1; - @media (max-width: 60rem) { + @media (max-width: 40rem) { opacity: 1; } } @@ -371,7 +376,7 @@ display: flex; align-items: center; gap: 12px; - transition: background-color 0.2s ease; + transition: all 0.2s ease; cursor: pointer; box-shadow: 0 0 0 1px rgba(19, 16, 16, 0.08), @@ -379,10 +384,20 @@ 0 4px 3px -2px rgba(19, 16, 16, 0.12), 0 1px 2px -1px rgba(19, 16, 16, 0.12); + @media (max-width: 40rem) { + box-shadow: + 0 0 0 1px rgba(19, 16, 16, 0.16) + } + &:hover { background: var(--color-background); } + + &:active { + transform: scale(0.98); + box-shadow: 0 0 0 1px rgba(19, 16, 16, 0.08), 0 6px 8px -8px rgba(19, 16, 16, 0.50); + } } |
