don't use focus mixin on mobile
This commit is contained in:
parent
904dd32df4
commit
90be60c9b0
3 changed files with 12 additions and 6 deletions
|
@ -5,8 +5,10 @@
|
|||
font-size: var(--font-small);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
@include focus;
|
||||
@media (min-width: $breakpoint-small) {
|
||||
&:focus {
|
||||
@include focus;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -123,8 +123,10 @@
|
|||
background-color: var(--color-primary-alt);
|
||||
}
|
||||
|
||||
&:focus {
|
||||
@include focus;
|
||||
@media (min-width: $breakpoint-small) {
|
||||
&:focus {
|
||||
@include focus;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
|
|
|
@ -115,8 +115,10 @@
|
|||
|
||||
.button--primary,
|
||||
.button ~ .button--link {
|
||||
&:focus {
|
||||
@include focus;
|
||||
@media (min-width: $breakpoint-small) {
|
||||
&:focus {
|
||||
@include focus;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue