mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-07 02:59:49 +00:00
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);
|
font-size: var(--font-small);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
@media (min-width: $breakpoint-small) {
|
||||||
@include focus;
|
&:focus {
|
||||||
|
@include focus;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -123,8 +123,10 @@
|
||||||
background-color: var(--color-primary-alt);
|
background-color: var(--color-primary-alt);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus {
|
@media (min-width: $breakpoint-small) {
|
||||||
@include focus;
|
&:focus {
|
||||||
|
@include focus;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
|
|
|
@ -115,8 +115,10 @@
|
||||||
|
|
||||||
.button--primary,
|
.button--primary,
|
||||||
.button ~ .button--link {
|
.button ~ .button--link {
|
||||||
&:focus {
|
@media (min-width: $breakpoint-small) {
|
||||||
@include focus;
|
&:focus {
|
||||||
|
@include focus;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue