From fbb693d87fbfb4e2bc1079ea4a99cc4c9d23221a Mon Sep 17 00:00:00 2001 From: Brad Simpson Date: Fri, 9 Feb 2024 08:19:21 -0700 Subject: [PATCH] Fix: Utilize .size-small class for .hide-on-mobile class (#495) --- less/project/theme-common.less | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/less/project/theme-common.less b/less/project/theme-common.less index b35c2fd7..11ff338a 100644 --- a/less/project/theme-common.less +++ b/less/project/theme-common.less @@ -92,8 +92,6 @@ } } -.hide-on-mobile { - @media (max-width: @device-width-medium) { - display: none; - } +.size-small .hide-on-mobile { + display: none; }