Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0d248cf

Browse files
authoredMay 19, 2025··
[#1169] style(renderer): fix css property for justify-content on container settings
1 parent cb5f520 commit 0d248cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎libs/renderer/src/components/block-settings/custom/ContainerLayoutSettings.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ export const ContainerLayoutSettings = observer(
692692
}
693693
options={[
694694
{
695-
value: "left",
695+
value: "flex-start",
696696
icon:
697697
flexDirection === "row"
698698
? AlignHorizontalLeft
@@ -710,12 +710,12 @@ export const ContainerLayoutSettings = observer(
710710
isDefault: false,
711711
},
712712
{
713-
value: "right",
713+
value: "flex-end",
714714
icon:
715715
flexDirection === "row"
716716
? AlignHorizontalRight
717717
: VerticalAlignBottom,
718-
title: "Right",
718+
title: "Bottom",
719719
isDefault: false,
720720
},
721721
]}

0 commit comments

Comments
 (0)
Please sign in to comment.