diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-14 18:24:43 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-11-14 18:24:53 +0100 |
| commit | d285093900ff6f8e3d5dba394999bb413f5d00f3 (patch) | |
| tree | 88b9127d031177b8e3787d4e263ae7cb7d9a461f /src/frontend/app/components/StopMapSheet.css | |
| parent | 80f6263516e307bcc6d887f6f91757bc73ae63f2 (diff) | |
Enhance stop map functionality with new styles and components for better user experience
Diffstat (limited to 'src/frontend/app/components/StopMapSheet.css')
| -rw-r--r-- | src/frontend/app/components/StopMapSheet.css | 17 |
1 files changed, 17 insertions, 0 deletions
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; + } +} |
