diff --git a/utopia-api/src/layout/flex.ts b/utopia-api/src/layout/flex.ts index 23a2a0df37a6..5e89bc423da2 100644 --- a/utopia-api/src/layout/flex.ts +++ b/utopia-api/src/layout/flex.ts @@ -215,6 +215,7 @@ export enum FlexJustifyContent { SpaceAround = 'space-around', SpaceBetween = 'space-between', SpaceEvenly = 'space-evenly', + Stretch = 'stretch', } export const AllFlexJustifyContents: Array = [ @@ -224,6 +225,7 @@ export const AllFlexJustifyContents: Array = [ FlexJustifyContent.SpaceAround, FlexJustifyContent.SpaceBetween, FlexJustifyContent.SpaceEvenly, + FlexJustifyContent.Stretch, ] export enum FlexDirection {