Created
December 15, 2018 14:49
-
-
Save astr0sl0th/23034bacfde4b6e3de5497049b8dec25 to your computer and use it in GitHub Desktop.
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 | |
| class="modal" | |
| [ngClass]="className" | |
| [class.modal--open]="(toggleModal | async) === modalName" | |
| > | |
| <div class="modal__overlay" (click)="closeModal()"></div> | |
| <div class="modal__container"> | |
| <div class="modal__body"> | |
| <button | |
| class="close-button modal__close js-modal-close" | |
| type="button" | |
| (click)="closeModal()" | |
| > | |
| <span class="close-button__line"></span> | |
| <span class="close-button__line"></span> | |
| </button> | |
| <div class="modal__content"> | |
| <header class="modal__header"> | |
| <h1 class="modal__title">{{ title }}</h1> | |
| <p class="lead modal__lead">{{ subHeading }}</p> | |
| </header> | |
| <ng-content></ng-content> | |
| </div> | |
| </div> | |
| </div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment