From 30fb5d57ce25ecc69a9b4c6c60064e0096346089 Mon Sep 17 00:00:00 2001 From: Avraham Sakal Date: Mon, 29 Sep 2025 08:26:29 -0400 Subject: [PATCH] subtle bounce effect on print button --- pages/index/print-button.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pages/index/print-button.css b/pages/index/print-button.css index ce20768..3dd2800 100644 --- a/pages/index/print-button.css +++ b/pages/index/print-button.css @@ -18,6 +18,17 @@ cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; z-index: 1000; + + animation: float 2.2s ease-in-out infinite; +} + +@keyframes float { + 0%, 100% { + transform: translateY(0); + } + 50% { + transform: translateY(-6px); + } } .floating-print-btn:hover {