From 51e2c9c0884c240fc36f216dabde9429f6b71349 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Mon, 4 Jul 2022 21:08:12 +0200 Subject: [PATCH] change: header left align --- src/app/app.component.css | 11 ++++------- src/app/app.component.html | 2 +- src/app/app.component.ts | 2 +- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/app/app.component.css b/src/app/app.component.css index 648ab33..d5a8171 100644 --- a/src/app/app.component.css +++ b/src/app/app.component.css @@ -1,11 +1,8 @@ h1 { - text-align: center; + text-align: left; } - -@media only screen and (min-width: 60.625em) { - .foodcardeditor { - max-width: 60em; - margin: 0 auto; - } +.foodcardeditor { + max-width: 60em; + margin: 0 auto; } diff --git a/src/app/app.component.html b/src/app/app.component.html index 84402ed..bc03843 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,5 +1,5 @@ -

Speisekarten-Editor

+

Speisekarten-Editor

diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 265d4dc..544864a 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -21,7 +21,7 @@ export class AppComponent implements AfterViewChecked public foodcard: IFoodCard = { Titles: [] }; public downloadJsonHref: SafeUrl = ""; public downloadHtmlHref: SafeUrl = ""; - public title = "speisekarten-editor"; + public title: string = "speisekarten-editor"; constructor(private jsonFileService: JsonFileService, private htmlExportService: HtmlExportService) {} -- 2.39.5