QTab size
-
Can we modify the size or the font-size for a q-tab? For example
<q-tabs
v-model=“tab”
class=“text-teal size”
>
<q-tab name=“mails” icon=“mail” label=“Mails” />
<q-tab name=“alarms” icon=“alarm” label=“Alarms” />
<q-tab name=“movies” icon=“movie” label=“Movies” />
</q-tabs><style scoped>
.size {
font-size: 1.3em;
}
</style> -
.q-tab__label { font-size: 3em; }
Qtab will grow with increasing text-size, if that is not good enough let me know.
-
Unfortunately it made no difference
-
@adi_dragomir since you are using scoped, you do it with a
deep selector
ie v::deep or >>> or /deep/. -
Yes, you are right.
Thank you.