Is it possible to resize vuetify components?

Ternence.Lin picture Ternence.Lin · Apr 5, 2018 · Viewed 35.9k times · Source

I recently use Vuetify to implement some UI designs. However, I found the default input component (such as v-text-field, v-select) are too large. I found that I can adjust the width of them, but for the height and font size, how can I change them?

Answer

David Tinker picture David Tinker · Jan 9, 2019

I have had some success using CSS transform to shrink everything:

.compact-form {
    transform: scale(0.875);
    transform-origin: left;
}

Just add that to your form. Its takes the font-size down to 14px (instead of 16) and shrinks the checkboxes and so on as well.