When I have an otherwise empty app with a v-app-bar inside of the v-app container, the app bar takes up half of the page.
<v-app>
<v-app-bar color="deep-purple" dark >
<v-toolbar-title>Page title</v-toolbar-title>
</v-app-bar>
<v-content>
Hello Vue
</v-content>
</v-app>
Demo in Codepen
I've tried adding options for dense, short, & height but they don't seem to have any affect.
The docs have plenty of code samples with this exact App Bar markup, so I'm trying to figure out what's going wrong.

