feat(web): 增加动效插件并优化侧边栏动画

- 为 `web` 应用引入 `tailwindcss-animate`,并接入 Tailwind 配置。
- 调整 `sheet` 与 `sidebar` 的移动端遮罩、过渡时长和动画曲线,提升侧边栏展开收起体验。
- 精简移动端侧边栏无障碍标题,仅保留必要语义。
This commit is contained in:
LanQin
2026-06-20 02:26:45 +08:00
parent 4dd843b50a
commit 6d0935c6a5
5 changed files with 17 additions and 6 deletions
+1 -3
View File
@@ -11,7 +11,6 @@ import { Separator } from "@/components/ui/separator"
import {
Sheet,
SheetContent,
SheetDescription,
SheetHeader,
SheetTitle,
} from "@/components/ui/sheet"
@@ -211,8 +210,7 @@ const Sidebar = React.forwardRef<
side={side}
>
<SheetHeader className="sr-only">
<SheetTitle>Sidebar</SheetTitle>
<SheetDescription>Displays the mobile sidebar.</SheetDescription>
<SheetTitle></SheetTitle>
</SheetHeader>
<div className="flex h-full w-full flex-col">{children}</div>
</SheetContent>