1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

LibWeb: Support start and end alignment values in flex layout

These should just behave the same as `flex-start` and `flex-end`.
This commit is contained in:
Andreas Kling 2023-06-06 16:54:46 +02:00
parent abd6380cce
commit 9e807d7c6a
4 changed files with 69 additions and 0 deletions

View file

@ -10,12 +10,14 @@
"align-items": [
"baseline",
"center",
"end",
"flex-end",
"flex-start",
"normal",
"safe",
"self-end",
"self-start",
"start",
"stretch",
"unsafe"
],
@ -23,12 +25,14 @@
"auto",
"baseline",
"center",
"end",
"flex-end",
"flex-start",
"normal",
"safe",
"self-end",
"self-start",
"start",
"stretch",
"unsafe"
],