Browse Source

remove flickering upon page load on mobile

main
Nicolas Massé 5 years ago
parent
commit
8b4695154b
  1. 5
      assets/css/itix.css

5
assets/css/itix.css

@ -735,10 +735,11 @@ mjx-container {
.menu .menu-content { .menu .menu-content {
width: 300px; width: 300px;
left: -300px;
height: 100vh; height: 100vh;
background-color: var(--main-background-color); background-color: var(--main-background-color);
position: fixed; position: fixed;
transform: translate(-300px, 0); transform: none;
transition: transform 0.2s linear; transition: transform 0.2s linear;
} }
@ -764,7 +765,7 @@ mjx-container {
* the overlay that hides the article content. * the overlay that hides the article content.
*/ */
.menu input.hamburger-menu:checked ~ .menu-content { .menu input.hamburger-menu:checked ~ .menu-content {
transform: none; transform: translate(300px, 0);
} }
.menu input.hamburger-menu:checked ~ .menu-overlay { .menu input.hamburger-menu:checked ~ .menu-overlay {

Loading…
Cancel
Save