From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/components/base/skeleton/index.tsx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/app/components/base/skeleton/index.tsx b/app/components/base/skeleton/index.tsx index 41edc26..a2d4e4d 100644 --- a/app/components/base/skeleton/index.tsx +++ b/app/components/base/skeleton/index.tsx @@ -24,7 +24,7 @@ export const SkeletonRectangle: FC<SkeletonProps> = (props) => { const { className, children, ...rest } = props return ( - <div className={classNames('h-2 rounded-sm opacity-20 bg-text-quaternary my-1', className)} {...rest}> + <div className={classNames('h-2 rounded-sm opacity-20 bg-text-tertiary my-1', className)} {...rest}> {children} </div> ) -- Gitblit v1.8.0