You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
For a simple (small) project, the above style include works fine. But when I use the above code in a bigger project and combine it with other style declarations like:
<style include="iron-flex iron-flex-alignment">
<style>
:host {
/* other style declarations here */
}
/* more styles here */
</style>
I kept getting the following error
After debugging my code, I finally resolved the issue by adding </style>
<!-- add missing closing tag -->
<style include="iron-flex iron-flex-alignment"></style>
<style>
:host {
/* other style declarations here */
}
</style>
The text was updated successfully, but these errors were encountered:
The sample code posted at Flexbox Layout example shows the following code:
For a simple (small) project, the above style include works fine. But when I use the above code in a bigger project and combine it with other style declarations like:
I kept getting the following error
After debugging my code, I finally resolved the issue by adding
</style>
The text was updated successfully, but these errors were encountered: