I want to put a modal from bootstrap into my app. For me it is important to style model by myself. With ngx-bootstrap example of ng-template it is not possible to do this. Is there any better soluton instead of this???
<ng-template #template>
<div class="modal-header-custom">
<h4 class="modal-title pull-left">Modal</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body"></div>
</ng-template>
If you want to fundamentally re-style (re-theme) the modal, I'd having a look at applying different CSS styles to the modal-specific classes. Have a look at the SCSS-source to identify which classes you need to target:
https://github.com/twbs/bootstrap/blob/main/scss/_modal.scss