minor change to banner
This commit is contained in:
@@ -3,10 +3,9 @@
|
||||
<a routerLink="/" class="navbar-brand" routerLinkActive="active">
|
||||
<img [src]="config().logo_url" alt="" class="brand-flower" aria-hidden="true">
|
||||
<span class="brand-name">
|
||||
<span class="brand-mountain">{{ config().name_primary | slice:0:1 }}</span>{{ config().name_primary | uppercase }}
|
||||
<span class="brand-accent">{{ config().name_secondary | uppercase }}</span>
|
||||
</span>
|
||||
<span class="brand-mountain">{{ config().callsign | uppercase }}</span>
|
||||
<span class="brand-tagline">{{ config().tagline }}</span>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<button class="navbar-toggle" aria-label="Toggle menu" (click)="toggleMenu()">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Component, DestroyRef, inject, computed, OnInit } from '@angular/core';
|
||||
import { CommonModule, SlicePipe, UpperCasePipe } from '@angular/common';
|
||||
import { CommonModule, UpperCasePipe } from '@angular/common';
|
||||
import { RouterLink, RouterLinkActive, Router } from '@angular/router';
|
||||
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
|
||||
|
||||
@@ -9,7 +9,7 @@ import { StationConfigService } from '../services/station-config.service';
|
||||
@Component({
|
||||
selector: 'app-navbar',
|
||||
standalone: true,
|
||||
imports: [CommonModule, RouterLink, RouterLinkActive, SlicePipe, UpperCasePipe],
|
||||
imports: [CommonModule, UpperCasePipe, RouterLink, RouterLinkActive],
|
||||
templateUrl: './navbar.component.html',
|
||||
styleUrl: './navbar.component.scss',
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user