I was trying to figure out how to show the labels of v-stepper on mobile devices since they are hidden by default.
I was trying to figure out how to show the labels of v-stepper on mobile devices since they are hidden by default.
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;
}
}