From d285093900ff6f8e3d5dba394999bb413f5d00f3 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Fri, 14 Nov 2025 18:24:43 +0100 Subject: Enhance stop map functionality with new styles and components for better user experience --- src/frontend/app/components/StopMapSheet.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/frontend/app/components/StopMapSheet.css (limited to 'src/frontend/app/components/StopMapSheet.css') diff --git a/src/frontend/app/components/StopMapSheet.css b/src/frontend/app/components/StopMapSheet.css new file mode 100644 index 0000000..8ad784d --- /dev/null +++ b/src/frontend/app/components/StopMapSheet.css @@ -0,0 +1,17 @@ +/* Stop map container */ +.stop-map-container { + width: 100%; + height: 300px; + border-radius: 8px; + overflow: hidden; + border: 1px solid var(--border-color); + margin-block-start: 0; + margin-block-end: 1rem; + flex-shrink: 0; +} + +@media (max-width: 640px) { + .stop-map-container { + height: 250px; + } +} -- cgit v1.3