I'm looking for a way to make the <v-stepper-header>
component sticky on scroll.
I've tried to create custom CSS but didn't succeed.
Here's a sample code.
<v-stepper v-model="step">
<v-stepper-header class="sticky">
<v-stepper-step
step="1"
>
Step 1
</v-stepper-step>
</v-stepper>
.sticky {
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
}