diff --git a/html/minigolf.tsx b/html/minigolf.tsx
index 49f74b6..80f9713 100644
--- a/html/minigolf.tsx
+++ b/html/minigolf.tsx
@@ -1,4 +1,3 @@
-import { JSX } from "preact/jsx-runtime";
import { EggbugImg, Main, render_and_copy } from "./common.tsx";
const GolfBall = () => (
@@ -6,34 +5,70 @@ const GolfBall = () => (
style={{
resize: "both",
overflow: "hidden",
+ display: "flex",
position: "relative",
- // TODO: V REMOVE ME V
- outline: "1px solid red",
- width: "10rem",
- height: "10rem",
- transition: "all 5s",
+ width: "22%",
+ height: "23.5%",
+ transition: "all ease-out 2s",
gridArea: "1 / 1",
+ maxWidth: "100%",
+ maxHeight: "100%",
+ // backgroundImage:
+ // "url(https://static.pyrope.net/eggbug-golfball.png)",
+ // backgroundPosition: "150% 150%",
+ // backgroundRepeat: "no-repeat",
+ // backgroundSize: "5rem",
}}
>
-