From bf89c884f5826c24da6f685cddaa0579e48e8e6c Mon Sep 17 00:00:00 2001
From: rhenck <richard.henck@iqb.hu-berlin.de>
Date: Thu, 25 May 2023 17:04:09 +0200
Subject: [PATCH] [editor] Fix CSS value for flex-start

flex-start is the correct value for flex containers.
---
 .../editor/src/app/components/canvas/section-menu.component.ts  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/projects/editor/src/app/components/canvas/section-menu.component.ts b/projects/editor/src/app/components/canvas/section-menu.component.ts
index 8be8f550e..68f6b03ac 100644
--- a/projects/editor/src/app/components/canvas/section-menu.component.ts
+++ b/projects/editor/src/app/components/canvas/section-menu.component.ts
@@ -180,7 +180,7 @@ import { SelectionService } from '../../services/selection.service';
   `,
   styles: [
     '::ng-deep .layoutMenu {padding: 0 15px; width: 250px;}',
-    '::ng-deep .layoutMenu fieldset {margin: 10px 0; display: flex; flex-direction: column; align-items: start;}',
+    '::ng-deep .layoutMenu fieldset {margin: 10px 0; display: flex; flex-direction: column; align-items: flex-start;}',
     '::ng-deep .layoutMenu .section-height-input {margin-top: 10px;}',
     '.menuItem {margin-bottom: 5px;}',
     '::ng-deep .activeAfterID-menu .mat-form-field {width:90%; margin-left: 10px;}'
-- 
GitLab