I've been attempting to adjust the font-size of elements within my InfoWindows, but I'm facing some challenges. Here's a snippet of the code for my InfoWindow:
<InfoWindow
marker={this.state.activeMarker}
visible={this.state.showingInfoWindow}
onClose={this.onClose}
>
<div>
<h1>{this.state.selectedPlace.name}</h1>
<h4>{this.state.selectedPlace.busy}</h4>
</div>
</InfoWindow>
When I attempt to use CSS to style elements like h1 and h4 inside the info windows, nothing seems to change. Is there a known fix for this? While I understand that editing actual InfoWindows is challenging, should it be difficult to modify their child elements?