I have two flex inside a v-layout(fill-height). Problem: The second flex is aligned to end which is expected, but the first flex does not occupy the rest of the available space.
<v-container>
<v-layout row wrap fill-height>
<v-flex
xs12
class="white--text green darken-3"
>
<v-card-text>I should occupy rest of the available space</v-card-text>
</v-flex>
<v-flex
xs12
align-self-end
class="white--text blue darken-3"
>
</v-flex>
</v-layout>
</v-container>
Codepen:
https://codepen.io/adatdeltax/pen/MWaapYR?editors=1000
I am new to vuetify and above codepen is what I have tried till now ,is there any way to make flex1 occupy rest of the available space.