This repository was archived by the owner on Feb 18, 2022. It is now read-only.

Description
In one of your examples you have this:
<Grid
smallCellWidth="1"
smallAlign="right"
smallVerticalAlign="bottom"
mediumCellWidth="1"
mediumCellAlign="right"
mediumCellVerticalAlign="bottom"
>
<Cell>
<p>Lorem</p>
</Cell>
<Cell>
<p>ipsum</p>
</Cell>
</Grid>
Would it not be better if all sizes above the size you use just inherited the closest setting below (like using min-width)? Then you don't need to write parameters for every screen size.
With the belove example, medium/large/xlarge would inherit the settings from the small:
<Grid
smallCellWidth="1"
smallAlign="right"
smallVerticalAlign="bottom"
>
<Cell>
<p>Lorem</p>
</Cell>
<Cell>
<p>ipsum</p>
</Cell>
</Grid>