Allow entry of min and max pixel sizes for a fluid typography step

The new fluid typography generator is great but there is no control over the min and max font sizes generated for each scale step (e.g. --text-s). This can be an issue especially at steps below the baseline where font sizes can become difficult to read on small devices.

For example, the generated variable for step text-xs might be: clamp(0.9rem, calc(0.004971319311663479 * (100vw - 32rem) + 0.9rem), 1.42rem)

0.9rem is too small to read easily for some people and I might want to set it to 1.3rem.

So a way is needed to set/override the min and max pixel values for a step so Bricks uses these to calculate the clamp function.

This could be done easily once you have defined the scale type with Bricks displaying for each step min and max pixel fields. You could then leave them blank for a step so they are calculated via the scaling ratio or enter values in which case Bricks uses them to generate just the calc function part of the clamp function.

The main 3rd party css frameworks allow you to do this.