Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LibWeb: Handle flex reverse and auto margins with justify-content #20200

Closed

Conversation

PaddiM8
Copy link
Contributor

@PaddiM8 PaddiM8 commented Jul 25, 2023

This fixes layout issues related to row-reverse and column-reverse, as well as children being positioned outside of their parent when the parent has justify-content and the child has auto margin(s).

This is my first time playing around with serenity (and browser dev), so I apologize if I got something wrong! Hopefully I'm not way off 🙂

Before

LibWeb

image
justify-content on the parent and auto margins on the children

Chromium

image

After

LibWeb

image

PaddiM8 added 2 commits July 25, 2023 23:51
Containers with both flex reverse and justify content would
sometimes place children outside the container. This happened
because it assumed any reversed container would have items
aligned to the right, which isn't true when using eg. `flex-end`.

Both `justify-content: start` and `justify-content: end` are now
also independent of the reverseness.
Auto margins used together with justify-content would previously
result in children being positioned outside their parent. This was
solved by letting auto margins take precedence when they are used,
which was already implemented to some extent before, but not
fully.
@github-actions github-actions bot added the 👀 pr-needs-review PR needs review from a maintainer or community member label Jul 25, 2023
@PaddiM8
Copy link
Contributor Author

PaddiM8 commented Jul 25, 2023

Woops one problem.

@PaddiM8 PaddiM8 closed this Jul 25, 2023
@github-actions github-actions bot removed the 👀 pr-needs-review PR needs review from a maintainer or community member label Jul 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant