Is there a way to implement round corners for the dialog within the v-bottom-sheet
? Note that using
style="border-radius:20px;"
only affects the overlay, not the dialog itself.
<v-bottom-sheet style="border-radius:20px;" v-model="sheet" inset>
<v-sheet class="text-center">
<h1 style="color:red;">Header</h1>
<br>
</v-sheet>
</v-bottom-sheet>