Restyle registrar console based on the new design proposal (#2336)

This commit is contained in:
Pavlo Tkach 2024-03-21 18:05:09 -04:00 committed by GitHub
parent de3af34b66
commit 59f4129ee0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
119 changed files with 3468 additions and 2846 deletions

View file

@ -0,0 +1,16 @@
<div class="console-app__notifications">
@for (notification of mockNotifications; track notification.id) {
<div class="console-app__notification">
<div class="console-app__notification-content">
<button mat-mini-fab color="primary" disabled>
<mat-icon mat-mini-fab color="primary"> calendar_month </mat-icon>
</button>
<h4>{{ notification.text }}</h4>
</div>
<button mat-icon-button>
<mat-icon>close</mat-icon>
</button>
</div>
}
</div>