nadijagr commited on
Commit
bb3e7fa
·
verified ·
1 Parent(s): 4a14a16
Files changed (1) hide show
  1. app.py +5 -11
app.py CHANGED
@@ -547,17 +547,11 @@ dashboard = vm.Dashboard(
547
 
548
  app = Vizro().build(dashboard)
549
  app.dash.layout.children.append(
550
- html.Div(
551
- [
552
- html.Div(
553
- [
554
- "Made using ",
555
- html.Img(src=get_asset_url("images/logo.svg"), id="banner", alt="Vizro logo"),
556
- dbc.NavLink("vizro", href="https://github.com/mckinsey/vizro", target="_blank", external_link=True),
557
- ],
558
- className="anchor-div",
559
- ),
560
- ],
561
  className="anchor-container",
562
  )
563
  )
 
547
 
548
  app = Vizro().build(dashboard)
549
  app.dash.layout.children.append(
550
+ dbc.NavLink(
551
+ ["Made with ", html.Img(src=get_asset_url("images/logo.svg"), id="banner", alt="Vizro logo"), "vizro"],
552
+ href="https://github.com/mckinsey/vizro",
553
+ target="_blank",
554
+ external_link=True,
 
 
 
 
 
 
555
  className="anchor-container",
556
  )
557
  )