From 9513f6b9e6f85191616d4fbffbc109ab361ad263 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 27 Dec 2022 17:16:48 -0800 Subject: [PATCH] Remove hover state on GridRep on phone --- components/GridRep/index.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/GridRep/index.scss b/components/GridRep/index.scss index 0ac43f8e..1bdd076d 100644 --- a/components/GridRep/index.scss +++ b/components/GridRep/index.scss @@ -23,6 +23,14 @@ .Grid .weapon { box-shadow: inset 0 0 0 1px var(--grid-border-color); } + + @include breakpoint(phone) { + background: inherit; + + .Grid .weapon { + box-shadow: none; + } + } } .Grid {