max Height
This function sets the max-height property of a component for all media devices.
example calls:
maxHeight { small } // use a predefined symbol
maxHeight { "2em" } // provide a custom valueParameters
value
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes like dev.fritz2.styling.theme.Sizes.normal or alike.
open fun maxHeight(sm: SizesProperty? = null, md: SizesProperty? = null, lg: SizesProperty? = null, xl: SizesProperty? = null)
Content copied to clipboard
This function sets the max-height property of a component for all media devices.
example calls:
maxHeight { small } // use a predefined symbol
maxHeight { "2em" } // provide a custom valueParameters
lg
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for large media devices
md
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for medium sized media devices
sm
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for small media devices
xl
custom property or predefined symbol by dev.fritz2.styling.theme.Sizes for extra large media devices