chore: clean up classNames

This commit is contained in:
qtchaos 2024-04-12 00:04:19 +03:00
parent e46ca23516
commit ed451763ed
No known key found for this signature in database
GPG Key ID: 7DA98B2B9EF06A90
1 changed files with 3 additions and 3 deletions

View File

@ -83,9 +83,9 @@ export function PreferencesPart(props: {
}
className={classNames(
"bg-dropdown-background hover:bg-dropdown-hoverBackground select-none my-4 cursor-pointer space-x-3 flex items-center max-w-[25rem] py-3 px-4 rounded-lg",
allowAutoplay ? "cursor-pointer" : "cursor-not-allowed",
allowAutoplay ? "opacity-100" : "opacity-50",
allowAutoplay ? "pointer-events-auto" : "pointer-events-none",
allowAutoplay
? "cursor-pointer opacity-100 pointer-events-auto"
: "cursor-not-allowed opacity-50 pointer-events-none",
)}
>
<Toggle enabled={props.enableAutoplay && allowAutoplay} />