Skip to content

Commit 1ac4c82

Browse files
fix(ui): apply dynamic theme color to loading animation
1 parent 1ad778a commit 1ac4c82

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/ui/src/loading.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ export function Waiting({
99
children?: ReactNode;
1010
}) {
1111
return !wait ? (
12-
<div className="w-full h-96 flex flex-col justify-center items-center mb-8 ani-show-fast">
13-
<ReactLoading type="cylon" color="#FC466B" />
12+
<div className="w-full h-96 flex flex-col justify-center items-center mb-8 ani-show-fast text-theme">
13+
<ReactLoading type="cylon" color="currentColor" />
1414
</div>
1515
) : (
1616
<>{children}</>
1717
);
18-
}
18+
}

0 commit comments

Comments
 (0)