nbarjun commited on
Commit
694b002
·
verified ·
1 Parent(s): 79f7f05

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -18,7 +18,16 @@ trace_library = {'gases':trace_library_gases,\
18
 
19
  app = dash.Dash(__name__, suppress_callback_exceptions=True)
20
  app.title = "Bayesian Assessment of Halocarbon Banks"
21
- app.layout = html.Div(id="page-content", children=home_page())
 
 
 
 
 
 
 
 
 
22
  server = app.server
23
 
24
  register_navigation(app, atmosConc, lifeTimes, prod, trace_library)
 
18
 
19
  app = dash.Dash(__name__, suppress_callback_exceptions=True)
20
  app.title = "Bayesian Assessment of Halocarbon Banks"
21
+ app.layout = html.Div(
22
+ id="page-content",
23
+ children=home_page(),
24
+ style={
25
+ 'backgroundColor': 'white',
26
+ 'minHeight': '100vh',
27
+ 'margin': '0',
28
+ 'padding': '0'
29
+ }
30
+ )
31
  server = app.server
32
 
33
  register_navigation(app, atmosConc, lifeTimes, prod, trace_library)