Skip to content

Commit

Permalink
fix location card heigth settings
Browse files Browse the repository at this point in the history
  • Loading branch information
danieltsoukup committed Jun 7, 2024
1 parent c73458f commit e6a6b5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/pages/locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ def layout(device_id: str = None, **kwargs):
# get map for specific location
map = leaflet_manager.get_map(
device_id=device_id,
style={"height": "50vh"},
style={"height": "350px"},
radius=radius,
active=active,
)

level_card = location_component_manager.get_level_card(
label,
data_manager.location_noise[Granularity.hourly],
style={"height": "50vh", "margin-bottom": "20px"},
style={"height": "350px", "margin-bottom": "20px"},
)

hourly_noise_line_graph = (
Expand Down

0 comments on commit e6a6b5d

Please sign in to comment.