html - How to make a paper-toolbar stay at bottom? -
i using polymer paper elements. need 2 toolbars page, 1 @ top , other @ bottom. how make other one.
i have looked here answer. core-toolbar , using v1.0. still on using .bottom
, toolbar remains on top.
thanks
i use flexbox things this. here's example paper-header-panel:
<paper-header-panel> <paper-toolbar><span>top toolbar</span></paper-toolbar> <div class="layout vertical fit"> <div class="layout flex">content</div> <paper-toolbar><span>bottom toolbar</span></paper-toolbar> </div> </paper-header-panel>
note using iron-flex-layout & should use mixin version of layout styles instead of classes directly i've done here (i.e. @apply(--layout-vertical), etc) or use flexbox styles directly.
Comments
Post a Comment