I am seeking to create a unique v-card design where only two corners are rounded. Despite my attempts, the card ended up rotated by 90° and didn't achieve the desired outcome.
DESIGN ATTEMPT:
<div class="text-center rotate-ninety ml-n6">
<v-card
hover
ripple
class="rounded-card py-5 px-2"
elevation="10"
color="orange"
>
<v-icon
color="black"
left
>
mdi-domain
</v-icon>
<span class="black--text">
Domain
</span>
</v-card>
</div>
CUSTOM STYLING:
.rotate-ninety {
writing-mode: vertical-rl;
text-orientation: mixed;
}
.rounded-card {
border-top-left-radius: 25px;
border-top-right-radius: 25px;
border-bottom-left-radius: 0px;
border-bottom-right-radius: 0px;
}
Could I possibly be overlooking something in my code?
Appreciate any insights,
Chris