Browse Source

ux: Less Caffeine (#9104)

Prevents stress on Roo's hip bones
Bruno Bergher 2 months ago
parent
commit
ca64953061
1 changed files with 2 additions and 2 deletions
  1. 2 2
      webview-ui/src/components/welcome/RooHero.tsx

+ 2 - 2
webview-ui/src/components/welcome/RooHero.tsx

@@ -7,7 +7,7 @@ const RooHero = () => {
 	})
 
 	return (
-		<div className="pb-4 forced-color-adjust-none">
+		<div className="pb-4 forced-color-adjust-none group">
 			<div
 				style={{
 					backgroundColor: "var(--vscode-foreground)",
@@ -18,7 +18,7 @@ const RooHero = () => {
 					maskRepeat: "no-repeat",
 					maskSize: "contain",
 				}}
-				className="mx-auto hover:animate-bounce">
+				className="mx-auto group-hover:animate-bounce translate-y-0 transition-transform duration-500">
 				<img src={imagesBaseUri + "/roo-logo.svg"} alt="Roo logo" className="h-8 opacity-0" />
 			</div>
 		</div>