diff --git a/src/store_locator/store_locator.ts b/src/store_locator/store_locator.ts index 4e227cb..3f779a1 100644 --- a/src/store_locator/store_locator.ts +++ b/src/store_locator/store_locator.ts @@ -420,7 +420,7 @@ export class StoreLocator extends BaseComponent {
- ${join(listing.addressLines ?? [], html`
`)} + ${(listing.addressLines ?? []).map((line) => html`

${line}

`)}
${join(actionButtons, html``)} diff --git a/src/store_locator/store_locator_styles.ts b/src/store_locator/store_locator_styles.ts index fd19e87..26a8a0b 100644 --- a/src/store_locator/store_locator_styles.ts +++ b/src/store_locator/store_locator_styles.ts @@ -111,6 +111,10 @@ export const storeLocatorStyles = css` margin-bottom: 0.5em; } + #location-results-list .address p { + margin: 0; + } + #location-results-list gmpx-place-directions-button { position: absolute; right: 1.2em;