From e8b94eeaea505ffe8270509f2fcd3c9873f417d2 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 23 Aug 2023 23:39:48 -0700 Subject: [PATCH] Don't show indicators on mobile --- components/reps/GridRep/index.module.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/reps/GridRep/index.module.scss b/components/reps/GridRep/index.module.scss index 1fab26fb..86555e34 100644 --- a/components/reps/GridRep/index.module.scss +++ b/components/reps/GridRep/index.module.scss @@ -11,6 +11,10 @@ width: 100%; opacity: 1; + @include breakpoint(phone) { + padding-bottom: $unit-2x; + } + &.visible { transition: opacity 0.3s ease-in-out; opacity: 1; @@ -358,6 +362,10 @@ justify-content: center; opacity: 0; + @include breakpoint(phone) { + display: none; + } + li { flex-grow: 1; text-indent: -9999px;