fix side flow

This commit is contained in:
ccmjga
2025-06-01 17:52:12 +08:00
parent f030be9c92
commit 709ed8218b
6 changed files with 67 additions and 40 deletions

View File

@@ -1,3 +1,32 @@
<template>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-bot-icon lucide-bot"><path d="M12 8V4H8"/><rect width="16" height="12" x="4" y="8" rx="2"/><path d="M2 14h2"/><path d="M20 14h2"/><path d="M15 13v2"/><path d="M9 13v2"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-bot-icon lucide-bot ai-breath">
<path d="M12 8V4H8" />
<rect width="16" height="12" x="4" y="8" rx="2" />
<path d="M2 14h2" />
<path d="M20 14h2" />
<path d="M15 13v2" />
<path d="M9 13v2" />
</svg>
</template>
<style scoped>
.ai-breath {
animation: ai-breath 1.8s infinite ease-in-out;
filter: drop-shadow(0 0 6px #60a5fa);
}
@keyframes ai-breath {
0%,
100% {
filter: drop-shadow(0 0 6px #60a5fa) brightness(1);
stroke: #60a5fa;
}
50% {
filter: drop-shadow(0 0 16px #2563eb) brightness(1.3);
stroke: #2563eb;
}
}
</style>