mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-13 07:55:06 +01:00
chore: clean up classNames
This commit is contained in:
parent
e46ca23516
commit
ed451763ed
@ -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} />
|
||||
|
Loading…
Reference in New Issue
Block a user