Skip to content

Commit

Permalink
Fix icon colors
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Apr 11, 2024
1 parent 826f023 commit 975007a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion web/src/components/filter/ReviewFilterGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,9 @@ function ShowMotionOnlyButton({
variant={motionOnlyButton ? "select" : "default"}
onClick={() => setMotionOnlyButton(!motionOnlyButton)}
>
<FaRunning />
<FaRunning
className={`${motionOnlyButton ? "text-selected-foreground" : "text-secondary-foreground"}`}
/>
</Button>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion web/src/views/events/RecordingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export function RecordingView({
size="sm"
onClick={() => navigate(-1)}
>
<IoMdArrowRoundBack className="size-5" size="small" />
<IoMdArrowRoundBack className="size-5 text-secondary-foreground" />
{isDesktop && <div className="text-primary">Back</div>}
</Button>
<div className="flex items-center justify-end gap-2">
Expand Down
4 changes: 2 additions & 2 deletions web/src/views/live/LiveCameraView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export default function LiveCameraView({ camera }: LiveCameraViewProps) {
size="sm"
onClick={() => navigate(-1)}
>
<IoMdArrowRoundBack className="size-5" />
<IoMdArrowRoundBack className="size-5 text-secondary-foreground" />
{isDesktop && <div className="text-primary">Back</div>}
</Button>
<Button
Expand All @@ -247,7 +247,7 @@ export default function LiveCameraView({ camera }: LiveCameraViewProps) {
});
}}
>
<LuHistory className="size-5" />
<LuHistory className="size-5 text-secondary-foreground" />
{isDesktop && <div className="text-primary">History</div>}
</Button>
</div>
Expand Down

0 comments on commit 975007a

Please sign in to comment.