Skip to content

Instantly share code, notes, and snippets.

@dsternlicht
Last active November 27, 2018 15:00
Show Gist options
  • Save dsternlicht/2f090a8216d3f9ad0c0229679b18398f to your computer and use it in GitHub Desktop.
Save dsternlicht/2f090a8216d3f9ad0c0229679b18398f to your computer and use it in GitHub Desktop.
Angular modal component html
<div [ngClass]="customClass || ''" class="modal" [ngStyle]="{display: show ? 'block' : 'none'}">
<div class="overlay" (click)="closeCallback()"></div>
<div class="modal_content">
<ng-content></ng-content>
<button title="Close" class="close_modal" (click)="closeCallback()">
<i class="fas fa-times"></i>
</button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment