| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <!-- |
| 3 @license |
| 4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 5 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE |
| 6 The complete set of authors may be found at http://polymer.github.io/AUTHORS |
| 7 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS |
| 8 Code distributed by Google as part of the polymer project is also |
| 9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS |
| 10 --> |
| 11 |
| 12 <html> |
| 13 <head> |
| 14 |
| 15 <title>iron-flex-layout</title> |
| 16 <meta charset="utf-8"> |
| 17 <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 18 |
| 19 <script src="../../webcomponentsjs/webcomponents-lite.js"></script> |
| 20 |
| 21 <link rel="import" href="../../paper-styles/paper-styles.html"> |
| 22 <link rel="import" href="x-app.html"> |
| 23 |
| 24 <style> |
| 25 |
| 26 html, body, x-app { |
| 27 height: 100%; |
| 28 } |
| 29 |
| 30 body { |
| 31 margin: 0; |
| 32 } |
| 33 |
| 34 </style> |
| 35 |
| 36 </head> |
| 37 <body class="fullbleed"> |
| 38 |
| 39 <x-app></x-app> |
| 40 |
| 41 </body> |
| 42 </html> |
| OLD | NEW |