ie.css 177 B

12345678
  1. /*
  2. This is needed to avoid FOUC in IE11
  3. See https://github.com/jhildenbiddle/css-vars-ponyfill/issues/55
  4. */
  5. body {
  6. display: none; /* Legacy */
  7. display: var(--skip, block);
  8. }