1
0
Fork 0

change firefox mobile detector again

This commit is contained in:
Rhiannon Morris 2020-07-03 20:05:11 +02:00
parent dc854eca67
commit c97d19663e
1 changed files with 9 additions and 7 deletions

View File

@ -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;
}
}