Getting rid of blue text shadow on hover state for mobile devices

This commit is contained in:
Max 2022-01-14 10:43:29 -05:00
parent bff0a06233
commit 2e47b329c8

View file

@ -27,7 +27,9 @@
border: 1px solid $gray-500;
width: 100%;
&:hover {
box-shadow: 0 0 0 4px $blue-100;
@include media-breakpoint-up(sm) {
box-shadow: 0 0 0 4px $blue-100;
}
cursor: pointer;
}
+ p {