From 281563501f396e63470ff06f2e34874f16e96cef Mon Sep 17 00:00:00 2001 From: Joe Vilches Date: Wed, 13 Mar 2024 14:07:44 -0700 Subject: [PATCH] Add documentation for space evenly in align content (#1617) Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1617 tsia, this was added recently and did not exist in the old docs Reviewed By: yungsters Differential Revision: D54830687 fbshipit-source-id: bbc7c833fdabe281367edeb0fbdc85960fe982fb --- website-next/docs/styling/align-content.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website-next/docs/styling/align-content.mdx b/website-next/docs/styling/align-content.mdx index 01e6d9c0..390cee35 100644 --- a/website-next/docs/styling/align-content.mdx +++ b/website-next/docs/styling/align-content.mdx @@ -25,6 +25,11 @@ remaining space around the lines. Compared to space between using space around will result in space being distributed to the begining of the first lines and end of the last line. +**Space evenly**: Evenly space wrapped lines across the container's main axis, distributing +remaining space around the lines. Compared to space around, space evenly will not +double the gaps between children. The size of gaps between children and between +the parent's edges and the first/last child will all be equal. +