I'm new in Angular and Bootstrap
Actually I have this in my Browser :
and this in my code
<ng-template #newSlaVmData let-modal>
<div class="modal-header modal-slaVMData">
<h4 class="modal-title" id="modal-basic-title">
Add
</h4>
<button type="button" class="close" aria-label="Close" (click)="modal.dismiss('Cross click')">
<span aria-hidden="true">
×
</span>
</button>
</div>
As you can see, some code are generated by Bootstrap.
I want to know how can I change the CSS of "modal-dialog" (Browser code) ?
I tried different methods like adding this class in my SCSS file but it didn't work.
I use these dependencies:
"@ng-bootstrap/ng-bootstrap": "^9.1.3"
"bootstrap": "^4.6.0",