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:
parent
e4c9d6571f
commit
23701a5261
1 changed files with 10 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue