Hi,
I am running my app using the following line, since I want my app to be available over the network:
app.run_server(host='0.0.0.0', port=5080)
The app is accessible on local machine using the following 2 addresses:
- 127.0.0.1:5080
- 192.168.0.102:5080 (this is the lan ip address of my machine on which dash app is running)
When I open the app using localhost address, font sizes are smaller than the app running on lan ip address. See Image below:
Any possible explanation for this discrepancy? How do I make sure that both the versions have same font size.
Thanks