14 lines
442 B
HTML
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>
|