Vuetify: 1.1.5
Browsers: Chrome, Firefox, Edge
OS: Windows
See example in Vuetify docs website here and note that the alignment/spacing of "My Home" text is off due to 100% width of vertical divider that is directly inside v-toolbar (in .v-toolbar__content)
.v-divider to have width: auto
.v-divider has width: 100% when directly inside a v-toolbar
Chrome is telling me that v-divider class is incorrectly getting width: 100% due to this line of code
Does .v-divider even need a width property? It looks like a flex property is all it needs.
Removing width: 100% fixes the problem with the vertical dividers example and all the other dividers are still working after that, if I'm not mistaken:

Most helpful comment
Does
.v-dividereven need awidthproperty? It looks like aflexproperty is all it needs.Removing
width: 100%fixes the problem with the vertical dividers example and all the other dividers are still working after that, if I'm not mistaken: