I’m working on the UI for my application running on plotly dash. When I set the background color there is a small border area between the window and the layout that doesn’t get colored. How do I remove this? Or is there a way to have the color go all the way to the edge of the window?
I whittled the page to the basics…
import os
from flask import Flask
import dash
import dash_html_components as html
app=dash.Dash()
app.css.append_css({'external_url': 'https://codepen.io/chriddyp/pen/bWLwgP.css'})
server = Flask(__name__)
server.secret_key = os.environ.get('secret_key', 'secret')
app.layout = html.Div(
[
html.Div(
[html.H1('Dashboard',className='six columns')],
className='row',
),
],
className='twelve columns',
style={'background-color':'gray'}
)
if __name__ == '__main__':
app.server.run(debug=True, threaded=True)