I am using v-text-field and v-select components along with vue-loader in my project. However, I encountered an issue when trying to change the font-size - it did not work as expected. Can someone please guide me on how to successfully change the font-size?
Here is a snippet of my code:
<template lang="pug">
p label-1
v-text-field(...)
p label-1
v-text-field(...)
</template>
<stylelang="sass">
.input-group .input-group__input
font-size: 12px !important
</style>
<stylelang="sass"scoped>
.p
font-size: 12px
</style>