-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Description
Changes introduced in src/components/Grid/Grid.module.scss break clients using Grid in version 0.56.0.
It happens due to change from:
align-content: var(--rui-local-align-content); // 2.
align-items: var(--rui-local-align-items); // 2.
justify-content: var(--rui-local-justify-content); // 2.
justify-items: var(--rui-local-justify-items); // 2.
to
place-content: var(--rui-local-align-content) var(--rui-local-justify-content); // 2.
place-items: var(--rui-local-align-items) var(--rui-local-justify-items); // 2.
After change, button in example is aligned at the start (left) while it was aligned at the end before the change:

Same thing happens with inputs:

Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Projects
Status
✅ Done