Perspective Breakpoint Param

With a column container in Perspective is there a way use the current breakpoint in use as a binding? For example, I am trying to change the amount of padding for a component based on the column breakpoints.

if(
	{view.props.defaultSize.width} < {parent.props.breakpoints[1].minWidth},
	0,
	if(
		{view.props.defaultSize.width} < {parent.props.breakpoints[2].minWidth},
		1,
		2
	)
)
1 Like