From 81f6bf89b7365fe05f24d33dcb71d663938e83d8 Mon Sep 17 00:00:00 2001 From: Ruben Date: Thu, 13 Nov 2025 22:11:45 -0600 Subject: [PATCH] disable animated background on mobile view automatically --- _includes/styles/base/base.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_includes/styles/base/base.css b/_includes/styles/base/base.css index c76b390..f2d8e5b 100644 --- a/_includes/styles/base/base.css +++ b/_includes/styles/base/base.css @@ -47,6 +47,11 @@ bg-image { width: 100% !important; height: 100% !important; z-index: -10000; + + @media screen and (max-width: 60rem) { + display: none !important; + animation: unset !important; + } } content-wrapper {