Skip to content

Instantly share code, notes, and snippets.

@astr0sl0th
Created December 15, 2018 14:49
Show Gist options
  • Select an option

  • Save astr0sl0th/23034bacfde4b6e3de5497049b8dec25 to your computer and use it in GitHub Desktop.

Select an option

Save astr0sl0th/23034bacfde4b6e3de5497049b8dec25 to your computer and use it in GitHub Desktop.
<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