From: Bastian Dehn Date: Mon, 4 Jul 2022 19:08:12 +0000 (+0200) Subject: change: header left align X-Git-Tag: v1.0.7^2~1 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=51e2c9c0884c240fc36f216dabde9429f6b71349;p=speisekarten-editor.git change: header left align --- 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) {}