I want to add the following tag to make our html Table more responsive <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
From what I’ve read on these forums, this doesn’t sound particularly simple to do, since Dash is mostly rendering in the <body>. But there should be a way using the underlying Flask server no? My Google-Fu has been failing me in this area. I take it I would probably have to create a Jinja2 template that would just be that tag and then load it somehow using app.server....
@rad, have you opened an issue about this? I definitely think that simply having this built into Dash with something like an html.Head and html.Footer would be beneficial (and fairly easy to do).
It’s not quite about having an html.Head and html.Footer because app.layout is rendered inside a div in the body. I’ve posted an issue outlining my thoughts for implementation.