I played around with polymer again, so I created a basic page with the help of some great tutorials on youtube but I always get this issue when opening the drawer.
As you can see the menu icon and the "Polymer" title is from the bottom toolbar. Maybe somebody knows how to fix it.
Thanks :)
<body fullbleed layout vertical>
<!-- Drawer -->
<paper-drawer-panel>
<!-- Inside the Drawer -->
<div drawer>
<!-- Drawer toolbar-->
<paper-toolbar class="tall">
<span>Menu</span>
</paper-toolbar>
</div>
<!-- Main Content -->
<div main class="main">
<!-- Main toolbar -->
<paper-toolbar>
<paper-icon-button icon="menu" tabIndex="1" id="paperToggle" paper-drawer-toggle></paper-icon-button>
<span class="flex">Polymer</span>
<!-- Toolbar icons -->
<paper-icon-button icon="refresh"></paper-icon-button>
<paper-icon-button icon="search"></paper-icon-button>
</paper-toolbar>
</div>
</paper-drawer-panel>
</body>
I have slightly modified your code. Put this in your body: