@@ -390,7 +390,7 @@ function App() {
390390 { loading && localFile ? (
391391 < div className = "text-sm text-muted-foreground" > Loading...</ div >
392392 ) : (
393- < Button size = { "sm" } className = { "ml-auto cursor-pointer" } onClick = { handleImportLocalButton } > Import</ Button >
393+ < Button size = { "sm" } className = { "ml-auto bg-pink-600 text-white hover:bg-pink-700 cursor-pointer" } onClick = { handleImportLocalButton } > Import</ Button >
394394 ) }
395395 </ div >
396396 < div className = "w-full min-h-48 border border-dashed border-gray-300 dark:border-gray-600 rounded-md flex flex-col items-center justify-center p-6" >
@@ -420,7 +420,7 @@ function App() {
420420 < Card className = "p-4 flex flex-col items-center justify-between gap-4" >
421421 < div className = "flex w-full items-center justify-between gap-2" >
422422 < div className = "w-full text-left font-semibold text-2xl" > Direct Link</ div >
423- < Button className = { "ml-auto cursor-pointer" } size = { "sm" } onClick = { handleImportUrl } > Import</ Button >
423+ < Button className = { "ml-auto cursor-pointer bg-pink-600 text-white hover:bg-pink-700 " } size = { "sm" } onClick = { handleImportUrl } > Import</ Button >
424424
425425 </ div >
426426 < div className = "w-full min-h-48 flex flex-col items-center" >
@@ -454,7 +454,7 @@ function App() {
454454 placeholder = "Start typing keywords..."
455455 className = "backdrop-blur-xs"
456456 />
457- < Button className = { "cursor-pointer" } onClick = { ( ) => handleSearch ( searchRef . current . value ) } disabled = { loading } >
457+ < Button className = { "cursor-pointer bg-pink-600 text-white hover:bg-pink-700 " } onClick = { ( ) => handleSearch ( searchRef . current . value ) } disabled = { loading } >
458458 < SearchIcon className = "w-4 h-4" />
459459 </ Button >
460460 </ div >
@@ -470,7 +470,7 @@ function App() {
470470 alt = "result"
471471 className = "w-24 h-24 object-cover rounded-md"
472472 />
473- < Button onClick = { ( ) => handleImport ( item ) } size = "sm" className = "mt-[2px] w-full" >
473+ < Button onClick = { ( ) => handleImport ( item ) } size = "sm" className = "mt-[2px] w-full bg-pink-600 text-white hover:bg-pink-700 " >
474474 Import
475475 </ Button >
476476 </ Card >
@@ -506,7 +506,7 @@ function App() {
506506 < div className = "flex gap-2 absolute bottom-[6px] opacity-0 duration-400 group-hover:opacity-100" >
507507 < Button
508508 size = "sm"
509- className = "h-6 px-2 text-xs bg-pink-600 hover:bg-pink-700"
509+ className = "h-6 px-2 text-xs bg-pink-600 text-white hover:bg-pink-700"
510510 onClick = { ( ) => handleSetSticker ( sticker ) }
511511 >
512512 Set
@@ -546,6 +546,7 @@ function App() {
546546 />
547547 < video ref = { handleVideoRef } />
548548 < Rnd
549+ className = ''
549550 size = { {
550551 width : layout . widthPct ? layout . widthPct * previewWidth : layout . width ,
551552 height : layout . heightPct ? layout . heightPct * previewHeight : layout . height
@@ -572,7 +573,8 @@ function App() {
572573 }
573574 bounds = "parent"
574575 style = { { zIndex : 1 } }
575- >
576+ >
577+ < div className = 'absolute top-0 left-0 w-full h-full z-2 border-[2px] transition-all duration-300 border-transparent hover:border-pink-600/33 rounded-sm' > </ div >
576578 < img
577579 src = { toFileUrl ( activeSticker . path ) }
578580 alt = "active"
0 commit comments