Я пытаюсь использовать ngx-модальный в Angular 6, я установил ngx-модальный и импортировал в App-Module и использовал в других компонентах, но после нажатия кнопки «showModal» фон становится серым, но модальныйне отображаетсяВот код:
<button (click)="firstModal.open()">modal with custom header content and footer</button>
<modal #firstModal>
<modal-header>
<h1>I am first modal</h1>
</modal-header>
<modal-content>
This modal has its own header, content and footer.
</modal-content>
<modal-footer>
<button class="btn btn-primary" (click)="firstModal.close()">okay!</button>
</modal-footer>
</modal>
и после проверки html-страницы загружается только один класс
![enter image description here](https://i.stack.imgur.com/7fJOE.png)
Спасибо запомощь.