Prikers
Prikers

Reputation: 958

How to make vuetify stepper full height

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:

Without 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

Answers (1)

Arijit
Arijit

Reputation: 1674

Just add a style tag with height:100%.

From your code:

<v-stepper v-model="e1" style="height:100%">

Upvotes: 1

Related Questions