0👍
instead of using the api label of q-tab
.
do this
<q-tab>Mail<q-tab>
by doing that you can change it’s font-weight, font-size, everything in 3 ways.
1. by defining class name
class="tab"
and style it
.tab{
font-size: 20px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
- is directly style in q-tab
style="font-size:20px; font-weight:normal;"
- is using quasar typography
class= "text-subtitle2 text-weight-thin"
- [Vuejs]-Why I can't import the image inside a component Vue.js?
- [Vuejs]-Inertia detect api request 303 in nuxt js and laravel
Source:stackexchange.com