Hey everyone, I'm working on a vuetify project and I need to convert inline styles to utility classes (if possible)
font-size: 24px; font-weight :600
I checked the documentation and noticed that it only provides options for setting size and weight without specific values like text-h4
or font-weight-regular
. Is there a way to use utility classes with specific size and weight values?
Here's an example of the code:
<span class="ma-0" style="color: var(--Gray-001, #7f7f7f); font-size: 22px; font-weight :600">Welcome to our shop </span>