From 68eb1c1ab224b13e020081d3f17663c951808f16 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Thu, 3 Oct 2024 16:26:38 -0500 Subject: [PATCH] Only hover icon buttons, no outline on focus for now --- app/assets/stylesheets/buttons.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/buttons.css b/app/assets/stylesheets/buttons.css index 043ee4aa1..be4710c90 100644 --- a/app/assets/stylesheets/buttons.css +++ b/app/assets/stylesheets/buttons.css @@ -164,11 +164,12 @@ --btn-icon-size: 100%; --btn-padding: 0; --hover-size: 0; + --outline-size: 0; @media (hover: hover) { transition: scale 200ms ease-out; - &:hover { + &:has(img):hover { scale: 1.2; } }