I am working on a Polymer project, and am struggling because the code was written for Polymer 0.5
. As I am inspecting the element, I see something like this:
<custom-elem layout vertical center center-justified style="width: 25%;">
<h1>Yay! </h1>
<p>
awesome!
</p>
</custom-elem>
When I mess around with removing the "layout, vertical, center, center-justified"
in the element inspector, it changes the layout in the legacy (Polymer 0.5) code. When I try to implement the same thing in 1.0, no styles are applied and when removed nothing changes.
What are these classes? Are they some sort of legacy code from Polymer 0.5? Thank you.