Skip to content

Commit 7569f12

Browse files
committed
add spin to HY logo when starting a new chat
1 parent 84b81cb commit 7569f12

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/client/components/ChatV2/general/ConversationSplash.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ export const ConversationSplash = ({ courseName, courseDate, promptName }: { cou
3030
color: '#e99939',
3131
opacity: 0.2,
3232
mb: '2.5rem',
33+
animation: 'spinOnce 0.8s ease-out',
34+
'@keyframes spinOnce': {
35+
from: { transform: 'rotate(0deg)' },
36+
to: { transform: 'rotate(360deg)' },
37+
},
3338
}}
3439
/>
3540

0 commit comments

Comments
 (0)