Add fade-in animation for model fallback toast notification
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
efa6e772e0
commit
5735b9cbe6
1 changed files with 5 additions and 0 deletions
|
|
@ -45,6 +45,7 @@
|
|||
},
|
||||
animation: {
|
||||
'slow-ping': 'ping 2s cubic-bezier(0, 0, 0.2, 1) infinite',
|
||||
'fade-in': 'fadeIn 0.3s ease-out',
|
||||
},
|
||||
keyframes: {
|
||||
ping: {
|
||||
|
|
@ -53,6 +54,10 @@
|
|||
opacity: '0'
|
||||
}
|
||||
},
|
||||
fadeIn: {
|
||||
'0%': { opacity: '0', transform: 'translateY(8px)' },
|
||||
'100%': { opacity: '1', transform: 'translateY(0)' },
|
||||
},
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue