Vuetify: 2.0.0-beta.7
Vue: 2.6.10
Browsers: Chrome 75.0.3770.100
OS: Mac OS 10.14.5
toolbar height is half the page
toolbar should be correct height
check the example
https://codepen.io/gadelkareem/pen/pXYWmL
something wrong with flex-basis:auto
This is because the root of v-app is a flex column and the toolbar now has flex: 1 1 auto. As a work around for now you can apply the _shrink_ class:
https://codepen.io/johnjleider/pen/QXRdom
Or you can wrap it in a div:
https://codepen.io/johnjleider/pen/RzmKOo
Or you can put it inside content, many options.
Closing as this is currently the expected behavior.
If you have any additional questions, please reach out to us in our Discord community.
Most helpful comment
This is because the root of
v-appis a flex column and the toolbar now has flex: 1 1 auto. As a work around for now you can apply the _shrink_ class:https://codepen.io/johnjleider/pen/QXRdom
Or you can wrap it in a div:
https://codepen.io/johnjleider/pen/RzmKOo
Or you can put it inside content, many options.