Skip to content

Commit

Permalink
Make toggle X darker to differentiate from on state.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tumppi066 committed Jan 14, 2025
1 parent 2afdc74 commit 491f1f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/page/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export function ETS2LAPage({ data, plugin, enabled, className }: { data: any, pl
})
})
}} className="w-8 h-8 p-[7px] data-[state=on]:bg-background data-[state=on]:hover:bg-white/10 " variant={"outline"}>
{pluginSettings[data.key] && pluginSettings[data.key] ? <Check /> : <X />}
{pluginSettings[data.key] && pluginSettings[data.key] ? <Check /> : <X className="text-muted-foreground/40" />}
</Toggle>
{data.options.separator && <Separator orientation="vertical" />}
<div>
Expand Down

0 comments on commit 491f1f6

Please sign in to comment.