/*
Copyright 2018, University of Colorado Boulder
This PhET-iO file requires a license
USE WITHOUT A LICENSE AGREEMENT IS STRICTLY PROHIBITED.
For licensing, please contact phethelp@colorado.edu
*/

/*Show the iframe at full size with no margins or padding*/
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

/*
Full size iframe
Note: we are using 100% instead of 100vw and 100vh because of layout problems on the iPad, see
https://github.com/phetsims/phet-io/issues/749
*/
iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}