don't use focus mixin on mobile

This commit is contained in:
Sean Yesmunt 2020-05-11 10:21:00 -04:00
parent 904dd32df4
commit 90be60c9b0
3 changed files with 12 additions and 6 deletions

View file

@ -5,9 +5,11 @@
font-size: var(--font-small);
}
@media (min-width: $breakpoint-small) {
&:focus {
@include focus;
}
}
}
.button--uri-indicator {

View file

@ -123,9 +123,11 @@
background-color: var(--color-primary-alt);
}
@media (min-width: $breakpoint-small) {
&:focus {
@include focus;
}
}
span {
display: flex;

View file

@ -115,10 +115,12 @@
.button--primary,
.button ~ .button--link {
@media (min-width: $breakpoint-small) {
&:focus {
@include focus;
}
}
}
.button--primary ~ .button--link {
margin-left: var(--spacing-small);