Last active
November 27, 2018 15:00
-
-
Save dsternlicht/2f090a8216d3f9ad0c0229679b18398f to your computer and use it in GitHub Desktop.
Angular modal component html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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