Skip to content

Commit

Permalink
Change width
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmbland committed Nov 9, 2023
1 parent d033ff4 commit 10a9439
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions app/pages/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@
style={"display": "flex", "justify-content": "space-around"},
children=[
html.Div(
style={"width": "48%"},
style={"width": "32%"},
children=[
html.H1("Agent Locations"),
html.Img(src=map_svg, width=400, height=400),
html.Img(src=map_svg, width="90%"),
],
),
html.Div(
style={"width": "48%"},
style={"width": "32%"},
children=[
html.H1("Agent Locations on SLD"),
html.Img(src=sld_svg, width=400, height=400),
html.Img(src=sld_svg, width="90%"),
],
),
html.Div(
style={"width": "48%"},
style={"width": "32%"},
children=[
html.H1("Agent Activity Breakdown"),
dcc.Graph(
Expand All @@ -83,21 +83,21 @@
style={"display": "flex", "justify-content": "space-around"},
children=[
html.Div(
style={"width": "48%"},
style={"width": "32%"},
children=[
html.H1("Electric Vehicle Location"),
html.Img(src=map_svg, width=400, height=400),
html.Img(src=map_svg, width="90%"),
],
),
html.Div(
style={"width": "48%"},
style={"width": "32%"},
children=[
html.H1("Electric Vehicle Location on SLD"),
html.Img(src=sld_svg, width=400, height=400),
html.Img(src=sld_svg, width="90%"),
],
),
html.Div(
style={"width": "48%"},
style={"width": "32%"},
children=[
html.H1("Electric Vehicle Charging Breakdown"),
dcc.Graph(
Expand Down

0 comments on commit 10a9439

Please sign in to comment.