I have a polymer core-scaffold that looks like this:
<core-scaffold id="scaffold">
<nav>
<core-toolbar>
<div>Menu</div>
</core-toolbar>
<core-menu valueattr="hash" selected="{{route}}" selectedModel="{{selectedPage}}"
on-core-select="{{menuItemSelected}}">
<template repeat="{{page, i in pages}}">
<paper-item hash="{{page.hash}}" noink style="color: #{{page.hash}}">
<core-icon icon="label{{route != page.hash ? '-outline' : ''}}"></core-icon>
<a href="#{{page.hash}}">{{page.label}}</a>
</paper-item>
</template>
</core-menu>
</nav>
...
</core-scaffold>
Everything works beautifully. Drawer pops out, etc. But I have a dozen items in the menu, and if the screen height is insufficient, then the bottom ones are cut off. I have spent hours trying to figure out how to get just the core-menu to scroll to no avail.
What's the trick? What am I missing?