Files
AltitudeWeb/frontend/src/app/pages/altitude/chat/components/chat-info/chat-info.component.html
T

14 lines
442 B
HTML

<div class="full-width"
[style.background-color]="getServerColor(selectedServer())">
<span class="server" [style.color]="getServerTextColor(selectedServer())">
{{ selectedServer() }}
</span>
<div class="notification-icon">
@if (notificationEnabled()) {
<svg-notification-enabled (click)="disableNotifications()"/>
} @else {
<svg-notification-disabled (click)="enableNotifications()"/>
}
</div>
</div>