From 6368e7de6879bbaa76088f9cacd535e2127f7044 Mon Sep 17 00:00:00 2001 From: Ivan Evans <74743263+Pasithea0@users.noreply.github.com> Date: Tue, 6 Aug 2024 11:32:47 -0600 Subject: [PATCH] Aways visible on mobile? always show if screen is smaller than 1024px --- src/components/utils/Flare.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/utils/Flare.css b/src/components/utils/Flare.css index b46bdbc6..c4a721da 100644 --- a/src/components/utils/Flare.css +++ b/src/components/utils/Flare.css @@ -14,3 +14,9 @@ .group:hover .bookmark-button { opacity: 1; } + +@media (max-width: 1024px) { + .bookmark-button { + opacity: 1 !important; + } +}