You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding the height and width class (https://vuetifyjs.com/en/styles/sizing/#usage), it's in rare cases, frustrating not to be able to size elements as you wish (for exemple 40/60%).
I'm asking my self if it's a good idea to add something like:
@for $size from 0 through 100 { $percent: "%"; .w-#{$size} { width: #{$size}#{$percent}; } .h-#{$size} { width: #{$size}#{$percent}; } }
This kind of solution can enable full control of the sizing.
Maybe it's not a good practice or maybe there's a reason you limited about 0/25/50/75/100, I'm curious to learn :)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello!
Regarding the height and width class (https://vuetifyjs.com/en/styles/sizing/#usage), it's in rare cases, frustrating not to be able to size elements as you wish (for exemple 40/60%).
I'm asking my self if it's a good idea to add something like:
@for $size from 0 through 100 {
$percent: "%";
.w-#{$size} {
width: #{$size}#{$percent};
}
.h-#{$size} {
width: #{$size}#{$percent};
}
}
This kind of solution can enable full control of the sizing.
Maybe it's not a good practice or maybe there's a reason you limited about 0/25/50/75/100, I'm curious to learn :)
Beta Was this translation helpful? Give feedback.
All reactions