Issue
Yo guys, i have a vuetify project that i need to change lnline style to utility classes (if possible)
font-size: 24px; font-weight :600
I saw the documentation that i only saw it set the size and weight without a value, such as text-h4
or font-weight-regular
. May i know is it can change to utility classes if i want set the size and weight with value?
example code:
<span class="ma-0" style="color: var(--Gray-001, #7f7f7f); font-size: 22px; font-weight :600">Welcome to our shop </span>
Solution
There are only 2 ways you can do it.
- Create custom class
- Overide vuetify class
We can only override the values of the classes listed in the documentation, you are free to change them as you wish.
Answered By - Muhammad Ichsan
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.