Remove hover state on GridRep on phone

This commit is contained in:
Justin Edmund 2022-12-27 17:16:48 -08:00
parent 8f635c6967
commit 9513f6b9e6

View file

@ -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 {