1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

disable blur on firefox mobile

This commit is contained in:
Fedor Katurov 2023-03-10 10:06:26 +06:00
parent e4c9d6571f
commit 23701a5261

View file

@ -112,7 +112,16 @@
@supports (
(-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))
) {
@content;
@supports not (-moz-appearance: none) {
@content;
}
// disable blur on firefox mobile (until they fix its performance)
@supports (-moz-appearance: none) {
@media (hover: hover) {
@content;
}
}
}
}