menu: avoid menu animation on page load in IE #180

This commit is contained in:
Sören Weber 2022-02-15 01:25:08 +01:00
parent 797042dee9
commit 4f28e6af83
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589

View file

@ -1445,3 +1445,11 @@ h6 a {
display: none;
}
}
/* turn off animiation in IE because this causes the menu
to move in from the left on every page load */
@media all and (-ms-high-contrast:none) {
.default-animation{
transition: none;
}
}