Skip to content

Grid behavior changed in version 0.56.0  #569

@bedrich-schindler

Description

@bedrich-schindler

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:

image

Same thing happens with inputs:

image

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

Status

✅ Done

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions