In the scene (html file), you must add a custom class label like so:
<div class="palm-row my-custom-style" x-mojo-tap-highlight="momentary">
<div class="palm-row-wrapper">
<div id="stages" x-mojo-element="ListSelector"></div>
</div>
</div>
Then in the stylesheet, you reference that custom class and subclass ".title":
.my-custom-style .title {
font-size:12px;
}
<div class="palm-row my-custom-style" x-mojo-tap-highlight="momentary">
<div class="palm-row-wrapper">
<div id="stages" x-mojo-element="ListSelector"></div>
</div>
</div>
Then in the stylesheet, you reference that custom class and subclass ".title":
.my-custom-style .title {
font-size:12px;
}
0 comments