change firefox mobile detector again
This commit is contained in:
parent
dc854eca67
commit
c97d19663e
1 changed files with 9 additions and 7 deletions
16
style.css
16
style.css
|
@ -18,13 +18,6 @@ body {
|
|||
background-blend-mode: overlay;
|
||||
}
|
||||
|
||||
@media (min-resolution: 2x) {
|
||||
body {
|
||||
background: var(--gradient) fixed;
|
||||
background-blend-mode: initial;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Muller';
|
||||
font-size: 1.75rem;
|
||||
|
@ -169,3 +162,12 @@ footer p, footer div {
|
|||
footer a {
|
||||
color: hsl(254deg, 50%, 50%);
|
||||
}
|
||||
|
||||
|
||||
/* hacky fix for firefox mobile 68 freaking out at blend modes ☹ */
|
||||
@media (-moz-touch-enabled) {
|
||||
body {
|
||||
background: var(--gradient) fixed;
|
||||
background-blend-mode: initial;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue