This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(layout): device size attributes should not set max-width or max-h…
…eight do not specify max-height or max-width for **.layout-column** and **.layout-row** media breakpoints; as these incorrectly limited the size of the container. > Consider below where `<xxx>` is the display breakpoints sm, md, lg, gt-sm, etc. Breaking Changes Before ```css .layout-colum > .flex-<xxx> { max-height : <percentage>; } .layout-row > .flex-<xxx> { max-width : <percentage>; } ``` now ```css .layout-colum > .flex-<xxx> { } .layout-row > .flex-<xxx> { } ```
- Loading branch information