fix mobile motion only button

This commit is contained in:
Josh Hawkins 2024-04-09 15:49:51 -05:00
parent 6603b0029e
commit 9c1567d96b

View File

@ -689,7 +689,7 @@ function ShowMotionOnlyButton({
onClick={() => setMotionOnlyButton(!motionOnlyButton)}
>
<FaRunning
className={`${motionOnlyButton ? "fill-primary" : "text-muted-foreground"}`}
className={`${motionOnlyButton ? "text-background dark:text-primary" : "text-secondary-foreground"}`}
/>
</Button>
</div>