Just starting out with Angular and Bootstrap
I have the following displayed in my browser:
Browser Code shown through inspect
and this is what I have 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>
It seems that some of the code is being generated by Bootstrap.
I am trying to figure out how to modify the CSS for "modal-dialog" (as seen in the Browser code).
I have attempted various methods, such as adding the class to my SCSS file, but it hasn't been successful.
These are the dependencies I'm using:
"@ng-bootstrap/ng-bootstrap": "^9.1.3"
"bootstrap": "^4.6.0",