From 1cacaca472febe5d3bf75e5c4265c9151922791d Mon Sep 17 00:00:00 2001 From: jojohoch <joachim.hoch@iqb.hu-berlin.de> Date: Mon, 22 May 2023 12:34:10 +0200 Subject: [PATCH] Replace flex value 'start' with 'flex-start' --- projects/editor/src/app/app.component.ts | 3 ++- .../text-editor-simple/rich-text-editor-simple.component.css | 2 +- .../editor/src/app/text-editor/rich-text-editor.component.css | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/projects/editor/src/app/app.component.ts b/projects/editor/src/app/app.component.ts index f13f6f6ea..0bf27edfc 100644 --- a/projects/editor/src/app/app.component.ts +++ b/projects/editor/src/app/app.component.ts @@ -21,7 +21,7 @@ import { UnitService } from './services/unit.service'; box-sizing: border-box; display: flex; flex-direction: column; - justify-content: start; + justify-content: flex-start; align-items: stretch; } .fx-flex { @@ -30,6 +30,7 @@ import { UnitService } from './services/unit.service'; } `] }) + export class AppComponent implements OnInit { isStandalone = window === window.parent; diff --git a/projects/editor/src/app/text-editor-simple/rich-text-editor-simple.component.css b/projects/editor/src/app/text-editor-simple/rich-text-editor-simple.component.css index fc174fd95..5e4b34d5d 100644 --- a/projects/editor/src/app/text-editor-simple/rich-text-editor-simple.component.css +++ b/projects/editor/src/app/text-editor-simple/rich-text-editor-simple.component.css @@ -44,6 +44,6 @@ button.active { box-sizing: border-box; display: flex; flex-direction: row; - justify-content: start; + justify-content: flex-start; align-items: stretch; } diff --git a/projects/editor/src/app/text-editor/rich-text-editor.component.css b/projects/editor/src/app/text-editor/rich-text-editor.component.css index dabbf673c..b98900409 100644 --- a/projects/editor/src/app/text-editor/rich-text-editor.component.css +++ b/projects/editor/src/app/text-editor/rich-text-editor.component.css @@ -88,7 +88,7 @@ button.active { box-sizing: border-box; display: flex; flex-direction: column; - justify-content: start; + justify-content: flex-start; align-items: stretch; } @@ -96,7 +96,7 @@ button.active { box-sizing: border-box; display: flex; flex-direction: row; - justify-content: start; + justify-content: flex-start; align-items: stretch; } -- GitLab