What this Bootstrap Utility API class does
Sets the height property of an element using viewport height (vh).
Example usage & available classes
<div class="vh-100 p-3"></div>
Example override
In the example override below, we are adding the additional class of "vh-50" with a value of "50vh".
"viewport-height": map-merge(
map-get($utilities, "viewport-height"),
(
values: map-merge(
map-get(map-get($utilities, "viewport-height"), "values"), (
50: 50vh
)
)
)
)