I have been using agm-snazzy-window from amg-snazzy-window
There is a mention that I can modify the css class, but when I try to do so, it doesn't seem to work. Here is an example:
map-component.html
<agm-snazzy-info-window [closeWhenOthersOpen]="true">
<ng-template>
My custom snazzy window
</ng-template>
</agm-snazzy-info-window>
I wanted to increase the width of the content, so I added this: map-component.scss:
.si-content {
width: 500px !important;
}
However, it doesn't seem to be working as expected. What am I missing?