diff --git a/src/app/modules/shows/show/show.component.html b/src/app/modules/shows/show/show.component.html index 569b30e..f0509af 100644 --- a/src/app/modules/shows/show/show.component.html +++ b/src/app/modules/shows/show/show.component.html @@ -8,10 +8,16 @@ {{show.public ? 'öffentliche' : 'geschlossene'}} Veranstaltung von -

+

Text anzeigen -

-
+ + +
+
+
| null = null; @@ -31,6 +33,8 @@ export class ShowComponent implements OnInit { public faDownload = faFileDownload; public faUser = faUser; public faUsers = faUsers; + public faZoomIn = faMagnifyingGlassPlus; + public faZoomOut = faMagnifyingGlassMinus; public constructor( private activatedRoute: ActivatedRoute, @@ -62,6 +66,14 @@ export class ShowComponent implements OnInit { .subscribe(_ => (this.songs = _)); } + public textSize = 1; + public onZoomIn() { + this.textSize += 0.1; + } + public onZoomOut() { + this.textSize -= 0.1; + } + public getSong(songId: string): Song | null { if (!this.songs) return null; const filtered = this.songs.filter(_ => _.id === songId); diff --git a/src/app/modules/shows/show/song/song.component.html b/src/app/modules/shows/show/song/song.component.html index c710635..9caa499 100644 --- a/src/app/modules/shows/show/song/song.component.html +++ b/src/app/modules/shows/show/song/song.component.html @@ -30,6 +30,7 @@