Vuetify: 1.2.3
Vue: 2.5.17
Browsers: all
OS: all
Use a container with attributes fill-height & align-start (see reproduction link, this immediately explains it):
<v-container fill-height align-start>blah</v-container>
align-start should move an item to the top ("start") of the div
Nothing happens, because there is a rule with selector .container.fill-height that sets align-items to center. align-start should override that rule.
Correct, .fill-height is overriding .align-start style:

Most helpful comment
Correct,

.fill-heightis overriding.align-startstyle: