You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
fix(layout): device size attributes should not set max-width or max-height
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> { }
```
0 commit comments