Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vuetify.js: <v-text-field> round corners

How to get rounded corners for <v-text-field> in Vuetify?

<v-flex xs12>
    <v-text-field  style="border-radius:50px"
        label="Text field"
        solo
    ></v-text-field>
</v-flex>

I tried border-radius property for bother the container <v-flex> and <v-text-field> itself but it did not work.

Codepen.

like image 386
Billal Begueradj Avatar asked Sep 12 '25 18:09

Billal Begueradj


1 Answers

You can add the rounded property to a v-text-field (vuetify docs)

<v-text-field
  label="Text field"
  solo
  rounded
></v-text-field>
like image 132
Johan Ström Avatar answered Sep 15 '25 09:09

Johan Ström