mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-05-01 08:07:55 +02:00
style: show cursor pointer on launch button hover
This commit is contained in:
@@ -377,7 +377,10 @@ export function ProfilesDataTable({
|
||||
variant={isRunning ? "destructive" : "default"}
|
||||
size="sm"
|
||||
disabled={!canLaunch}
|
||||
className={!canLaunch ? "opacity-50" : ""}
|
||||
className={cn(
|
||||
"cursor-pointer",
|
||||
!canLaunch && "opacity-50",
|
||||
)}
|
||||
onClick={() =>
|
||||
void (isRunning
|
||||
? onKillProfile(profile)
|
||||
|
||||
Reference in New Issue
Block a user