Reputation: 958
How can I make a Vuetify Stepper component fill the entire height of the page? Starting from the example in the doc I have tried several things:
<v-container>
with fill-height
around or in the stepper<v-spacer>
between the card and the buttonsWithout success. Ideally I would like the spacing between the card and the buttons to adjust with the screen size (hence the <v-spacer>
). The buttons would set at the bottom of the screen.
Link to the draft codpen
Upvotes: 1
Views: 1974
Reputation: 1674
Just add a style
tag with height:100%
.
From your code:
<v-stepper v-model="e1" style="height:100%">
Upvotes: 1