diff options
| author | Adam <[email protected]> | 2025-12-12 14:59:41 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-12-12 15:24:43 -0600 |
| commit | 6c3495a75a5cacad78eb908ea9cf5b4fad2d0836 (patch) | |
| tree | 87e1cfd6688bd8b21afcbc2ef7d8d14402626527 /packages/ui/src/styles | |
| parent | a16edb4ea09777ae180cc21646469c017636e7e5 (diff) | |
| download | opencode-6c3495a75a5cacad78eb908ea9cf5b4fad2d0836.tar.gz opencode-6c3495a75a5cacad78eb908ea9cf5b4fad2d0836.zip | |
fix: desktop layout
Diffstat (limited to 'packages/ui/src/styles')
| -rw-r--r-- | packages/ui/src/styles/animations.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/ui/src/styles/animations.css b/packages/ui/src/styles/animations.css index 5fcebb93f..0ae3493eb 100644 --- a/packages/ui/src/styles/animations.css +++ b/packages/ui/src/styles/animations.css @@ -12,6 +12,16 @@ } } +@keyframes pulse-opacity-dim { + 0%, + 100% { + opacity: 0; + } + 50% { + opacity: 0.3; + } +} + @keyframes fadeUp { from { opacity: 0; |
