You can see this error because you are using a class method to apply layouts. If you switch to using custom CSS mixes, you will not get an error.
So just import:
<link rel="import" href="bower_components/iron-flex-layout/iron-flex-layout.html">
not classes / iron-flex-layout.html (this seems to be the inclusion of this warning file)
Then use:
body { @apply(--layout-vertical); @apply(--layout-fullbleed); }
in your styles instead:
<body class="layout vertical fullbleed">
adding classes to your html elements.
This is a real shame because using classes is a much tidier and more intuitive way to apply layout styles.
Jamie source share