Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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)
|