Show vuetify stepper label on mobile

Viewed 940

I was trying to figure out how to show the labels of v-stepper on mobile devices since they are hidden by default.

1 Answers

Add to scss or css overrides:

@media only screen and (max-width: 959px) {
  .v-stepper:not(.v-stepper--vertical) .v-stepper__label {
    display: flex !important;
  }
}
Related