mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 01:47:41 +00:00
11 lines
367 B
HTML
11 lines
367 B
HTML
<div class="overlay" (click)="onOverlayClick()"></div>
|
|
<div class="modal" (click)="$event.stopPropagation()">
|
|
<div class="modal-header">
|
|
<span class="modal-title">{{ title() }}</span>
|
|
<button class="close-btn" (click)="onClose()" aria-label="Close">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<ng-content />
|
|
</div>
|
|
</div>
|