mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
14 lines
452 B
HTML
14 lines
452 B
HTML
<div class="grid grid-cols-[1fr_auto] items-center gap-4">
|
|
<div class="grid grid-flow-row gap-4">
|
|
<h1 class="text-left font-bold text-lg">{{ item.headline }}</h1>
|
|
<div class="notification-text">{{ item.text }}</div>
|
|
</div>
|
|
<div>
|
|
@if (editButton) {
|
|
<button class="notification-edit-cta text-brand font-bold text-lg px-4 py-3" (click)="itemSelected.emit(item)">
|
|
{{ editButtonLabel }}
|
|
</button>
|
|
}
|
|
</div>
|
|
</div>
|