Arts-of-coding commited on
Commit
73ee99d
1 Parent(s): d40e98f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -7,7 +7,9 @@ import polars as pl
7
  import os
8
  pl.enable_string_cache(False)
9
 
10
- app = dash.Dash(__name__, use_pages=True)
 
 
11
 
12
  app.layout = html.Div([
13
  html.H1('Multi-page app with Dash Pages'),
 
7
  import os
8
  pl.enable_string_cache(False)
9
 
10
+ external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
11
+
12
+ app = dash.Dash(__name__, use_pages=True, external_stylesheets=external_stylesheets)
13
 
14
  app.layout = html.Div([
15
  html.H1('Multi-page app with Dash Pages'),