Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Css.elm
Original file line number Diff line number Diff line change
Expand Up @@ -3437,6 +3437,12 @@ spaceBetween : JustifyContent a b
spaceBetween =
prop1 "space-between"

{-| The[`space-evenly`](https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content#Values) value for the
justify-content property.
-}
spaceEvenly : JustifyContent a b
spaceEvenly =
prop1 "space-evenly"

{-| The[`stretch`](https://developer.mozilla.org/en-US/docs/Web/CSS/align-items#Values) value for the
align-items property.
Expand Down
1 change: 1 addition & 0 deletions tests/Properties.elm
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ all =
, ( justifyContent center, "center" )
, ( justifyContent spaceAround, "space-around" )
, ( justifyContent spaceBetween, "space-between" )
, ( justifyContent spaceEvenly, "space-evenly" )
]
, testProperty { function = "opacity", property = "opacity" }
[ ( opacity inherit, "inherit" )
Expand Down