0

I'm building a form within a modal, shown in a ng-template tag. @ng-bootstrap/bootstrap Datepicker popup is stuck behind modal, like the picture below.

enter image description here

How do I push calendar popup to front?

Ng Bootstrap and Angular versions are listed below:

"@ng-bootstrap/ng-bootstrap": "^1.1.2"
"@angular/core": "^5.2.11"
lsilva
  • 147
  • 2
  • 17

1 Answers1

0

Try to add in your styles.css the following line:

.dropdown-menu.show { 
     z-index: 1090 !important; 
}