diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs index d22833876..4e006752c 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/menus/layout_container.cljs @@ -159,8 +159,8 @@ (for [align [:space-between :space-around :space-evenly]] [:button.align-content.tooltip {:class (dom/classnames :active (= align-content align) - :tooltip-bottom-left (not= align :start) - :tooltip-bottom (= align :start)) + :tooltip-bottom-left (not= align :space-between) + :tooltip-bottom (= align :space-between)) :alt (dm/str "Align content " (d/name align)) :on-click #(set-align-content align) :key (dm/str "align-content" (d/name align))} @@ -183,8 +183,8 @@ (for [justify [:space-between :space-around :space-evenly]] [:button.justify.tooltip {:class (dom/classnames :active (= justify-content justify) - :tooltip-bottom-left (not= justify :space-around) - :tooltip-bottom (= justify :space-around)) + :tooltip-bottom-left (not= justify :space-between) + :tooltip-bottom (= justify :space-between)) :alt (dm/str "Justify content " (d/name justify)) :on-click #(set-justify justify) :key (dm/str "justify-content" (d/name justify))}