From ec42cbbc24e06fa4318af02d689536618a809814 Mon Sep 17 00:00:00 2001 From: Rajesh Thapa Date: Sun, 21 Sep 2025 05:26:18 +0545 Subject: [PATCH 1/3] fix: zoom in when fast tap on button --- index.html | 20 +++++++++----------- main.css | 8 +++++++- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index 8b117c0..6026ac5 100644 --- a/index.html +++ b/index.html @@ -1,24 +1,22 @@ - - + + - - + + + Click me! - + + diff --git a/main.css b/main.css index 317b0ed..53ae7b7 100644 --- a/main.css +++ b/main.css @@ -1,3 +1,9 @@ +*{ + margin: 0px; + padding-right: 0px; + box-sizing: border-box; +} + .center { position: absolute; left: 50%; @@ -35,4 +41,4 @@ } .customCursor { cursor: url("peach-emoji.png"), auto; -} \ No newline at end of file +} From cd4d50ff65b17160bb63a9d3c8b8a5b0a3ce2629 Mon Sep 17 00:00:00 2001 From: Rajesh Thapa Date: Sun, 21 Sep 2025 05:47:39 +0545 Subject: [PATCH 2/3] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 6026ac5..0fbd15a 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - + From 39002c3a5939229e65fd01abd0f3018d0f06f253 Mon Sep 17 00:00:00 2001 From: Rajesh Thapa Date: Sun, 21 Sep 2025 05:48:35 +0545 Subject: [PATCH 3/3] Update main.css --- main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.css b/main.css index 53ae7b7..5d3a801 100644 --- a/main.css +++ b/main.css @@ -12,6 +12,7 @@ width: 10%; height: 8%; } + #clickMeText { position: absolute; left: 50%; @@ -22,6 +23,7 @@ user-select: none; -webkit-user-select: none; } + #popup { visibility: hidden; position: absolute; @@ -30,6 +32,7 @@ width: 100px; height: 100px; } + #popupText { display: inline-block; white-space: nowrap; @@ -39,6 +42,7 @@ transform: translate(-25%, -50%); font-size: 48px; } + .customCursor { cursor: url("peach-emoji.png"), auto; }