Skip to content

Border radius wrong output when using explicit radii #307

@renancaraujo

Description

@renancaraujo

When using border-radius explicit radii, lightning mistakes the order of the corner declaraions, switching up border-bottom-right-radius with border-bottom-left-radius.

ex

When:

/* input */
border-top-left-radius: 1% 2%;
border-top-right-radius: 3% 4%;
border-bottom-right-radius: 5% 6%;
border-bottom-left-radius: 7% 8%;

Then:

/* output */
border-radius: 1% 3% 7% 5%/2% 4% 8% 6%;

When it should:

/* output */
border-radius: 1% 3% 5% 7%/2% 4% 6% 8%;

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workinggood first issueGood for newcomers

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions