diff --git a/src/app/components/shared/footer/footer.component.html b/src/app/components/shared/footer/footer.component.html index 058a91fc639db4e272e1bc2db096d729b343b913..3e226fde7739c20ee97f6064eb1a1162713119b9 100644 --- a/src/app/components/shared/footer/footer.component.html +++ b/src/app/components/shared/footer/footer.component.html @@ -1,26 +1,24 @@ <footer> <mat-toolbar id="footer-toolbar"> - <button mat-button *ngIf="router.url !== '/home'" (click)="navToBlog()"> + <button (click)="navToBlog()" *ngIf="router.url !== '/home'" mat-button> <mat-icon>notes</mat-icon> <span *ngIf="deviceType === 'desktop'"> {{ 'footer.blog' | translate }} </span> </button> - <button mat-button *ngIf="router.url === '/home'" (click)="navToDemoSession()"> + <button (click)="navToDemoSession()" *ngIf="router.url === '/home'" mat-button> <mat-icon>input</mat-icon> - <span *ngIf="deviceType === 'desktop'"> - {{ 'footer.demo' | translate}} - </span> + {{ 'footer.demo' | translate}} </button> <span class="fill-remaining-space"></span> - <button mat-button (click)="navToDSGVO()"> + <button (click)="navToDSGVO()" mat-button> <mat-icon>security</mat-icon> <span *ngIf="deviceType === 'desktop'"> {{ 'footer.dsgvo' | translate}} </span> </button> <span class="fill-remaining-space"></span> - <button mat-button (click)="navToImprint()"> + <button (click)="navToImprint()" mat-button> <mat-icon>info</mat-icon> <span *ngIf="deviceType === 'desktop'"> {{ 'footer.imprint' | translate}}