Merge pull request #145 from Safelite/feature/CSR-307_remove-highlight-on-mobile

Getting rid of blue text shadow on hover state for mobile devices
This commit is contained in:
max-dempsey 2022-01-14 10:49:35 -05:00 committed by GitHub
commit e2774147fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 {