add a fallback in case animations aren't supported but it doesn't matter because netsurf doesn't support @supports???
This commit is contained in:
parent
8517c24dc6
commit
72cddae95f
1 changed files with 7 additions and 0 deletions
|
|
@ -116,4 +116,11 @@ html {
|
||||||
.js {
|
.js {
|
||||||
animation: 4.5s 1 linear js;
|
animation: 4.5s 1 linear js;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
@supports not (animation: 1s test) {
|
||||||
|
.nojs {
|
||||||
|
display: block;
|
||||||
|
visibility: visible
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue