diff --git a/src/components/maps/CitiesList.astro b/src/components/maps/CitiesList.astro index 73849e0..3dd8b8d 100644 --- a/src/components/maps/CitiesList.astro +++ b/src/components/maps/CitiesList.astro @@ -11,32 +11,4 @@ const sorted = cities.sort((a: string, b: any) => a.localeCompare(b, "pl")); {city} ))} - - - \ No newline at end of file + \ No newline at end of file diff --git a/src/components/sections/SectionAreaServed.astro b/src/components/sections/SectionAreaServed.astro index ef5929c..a3ca0fe 100644 --- a/src/components/sections/SectionAreaServed.astro +++ b/src/components/sections/SectionAreaServed.astro @@ -21,10 +21,10 @@ const sectionImages = import.meta.glob<{ default: ImageMetadata }>( const sectionImage = section.image ? findSectionImage(sectionImages, section.image) : null; const isAboveFold = index === 0; -// ✅ Konfiguracja wyświetlania +// Konfiguracja wyświetlania const showTitle = section.showTitle !== false; // domyślnie true -// ✅ Formatowanie listy miejscowości jako string +// Formatowanie listy miejscowości jako string const citiesText = cities.join(", "); --- @@ -66,33 +66,6 @@ const citiesText = cities.join(", ");

)} - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/src/styles/map-google.css b/src/styles/map-google.css index 0881811..4d166cf 100644 --- a/src/styles/map-google.css +++ b/src/styles/map-google.css @@ -31,7 +31,7 @@ } */ - + /* Pulsująca obwódka budynku */ .pulse-marker { width: 22px; @@ -110,14 +110,41 @@ } .gm-style-iw-c { - background: var(--f-background) !important; - border-radius: 14px !important; - box-shadow: 0 4px 18px rgba(0,0,0,0.12) !important; - padding: 0 !important; + background: var(--f-background) !important; + border-radius: 14px !important; + box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12) !important; + padding: 0 !important; } .gm-style-iw-d { overflow: visible !important; padding: 0 !important; - background: transparent !important; + background: transparent !important; +} + + +.fuz-cities-box { + + background: var(--f-background); + color: var(--f-text); + padding: 16px; + +} + +.fuz-cities-title { + font-size: 1.2rem; + font-weight: 600; + margin-bottom: 12px; +} + +.fuz-cities-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); + gap: 6px 14px; + font-size: 0.95rem; + line-height: 1.4; +} + +.fuz-city-item { + color: var(--f-text); } \ No newline at end of file