Upon examining the Vuetify code snippet below:
<v-layout align-center justify-center row fill-height>
<v-flex xs1>
<v-icon color="primary">clear</v-icon>
</v-flex>
<v-flex xs8>
<p>Text</p>
</v-flex>
<v-flex>
<v-btn rounded color="primary">Do Something!</v-btn>
</v-flex>
</v-layout>
(for more information: https://codepen.io/anon/pen/xNvzbQ)
The text within "Text" is not vertically centered.
However, by replacing:
<v-flex xs8>
<p>Text</p>
</v-flex>
with:
<v-flex xs8>
Text
</v-flex>
the text suddenly becomes centered.
I attempted to center it using align-items: center
or align-content: center
in the enclosing div without success.
What could be the reason for this behavior?