mirror of
https://github.com/infinilabs/coco-app.git
synced 2025-12-16 03:27:43 +01:00
feat: history added search and action menus (#322)
* feat: history added search and action menus * refactor: refinement of the dark theme * feat: add renamed input box style * feat: internalization * refactor: optimize the bright theme style * refactor: change dark theme style * feat: added api for deleting and modifying conversations * feat: supported search * feat: support for modifying the title * feat: support for deleting sessions * refactor: remove popup internationalization
This commit is contained in:
@@ -23,8 +23,8 @@ export default {
|
||||
},
|
||||
animation: {
|
||||
"fade-in": "fade-in 0.2s ease-in-out",
|
||||
'typing': 'typing 1.5s ease-in-out infinite',
|
||||
'shake': 'shake 0.5s ease-in-out',
|
||||
typing: "typing 1.5s ease-in-out infinite",
|
||||
shake: "shake 0.5s ease-in-out",
|
||||
},
|
||||
keyframes: {
|
||||
"fade-in": {
|
||||
@@ -32,15 +32,15 @@ export default {
|
||||
"100%": { opacity: "1" },
|
||||
},
|
||||
typing: {
|
||||
'0%': { opacity: '0.3' },
|
||||
'50%': { opacity: '1' },
|
||||
'100%': { opacity: '0.3' },
|
||||
"0%": { opacity: "0.3" },
|
||||
"50%": { opacity: "1" },
|
||||
"100%": { opacity: "0.3" },
|
||||
},
|
||||
shake: {
|
||||
'0%, 100%': { transform: 'rotate(0deg)' },
|
||||
'25%': { transform: 'rotate(-20deg)' },
|
||||
'75%': { transform: 'rotate(20deg)' }
|
||||
}
|
||||
"0%, 100%": { transform: "rotate(0deg)" },
|
||||
"25%": { transform: "rotate(-20deg)" },
|
||||
"75%": { transform: "rotate(20deg)" },
|
||||
},
|
||||
},
|
||||
boxShadow: {
|
||||
"window-custom": "0px 16px 32px 0px rgba(0,0,0,0.3)",
|
||||
|
||||
Reference in New Issue
Block a user