Skip to content

Commit 6321739

Browse files
committed
Restyling yt search item download/copy link action bar
1 parent e70a7d0 commit 6321739

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/downloader/youtube-search-result-box.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,19 +95,19 @@ export const YoutubeSearchResultBox: FC<YoutubeSearchResultRowType> = (props: Yo
9595

9696
<Img src={thumbnails} className="object-cover" />
9797
{showControls &&
98-
<div className="bg-background/30 rounded-full hover:bg-foreground/70 absolute p-2 top-2 right-2 flex gap-2 transition-all duration-500">
98+
<div className="bg-background/20 rounded-full hover:bg-foreground absolute p-2 top-2 right-2 flex gap-2 transition-all duration-500">
9999
<Icon
100100
onClick={downloadVideo}
101101
Icon={VideoIcon}
102-
className={cn(controlIconClassName, "text-background/60 hover:text-background")} />
102+
className={cn(controlIconClassName, "text-background")} />
103103
<Icon
104104
onClick={downloadAudio}
105105
Icon={HeadphonesIcon}
106-
className={cn(controlIconClassName, "text-background/60 hover:text-background")} />
106+
className={cn(controlIconClassName, "text-background")} />
107107
<Icon
108108
Icon={CopyIcon}
109109
onClick={copyYoutubeUrl}
110-
className={cn(controlIconClassName, "text-background/60 hover:text-background")} />
110+
className={cn(controlIconClassName, "text-background")} />
111111
</div>
112112
}
113113
<div className="px-4 py-2">

0 commit comments

Comments
 (0)