fix: remove restricted fields from public listing query, fix service worker offline fallback, style description as card and remove redundant heading

This commit is contained in:
2026-02-07 09:04:13 +01:00
parent 3c7d475d36
commit 3f51cb5e53
3 changed files with 9 additions and 5 deletions

View File

@@ -212,7 +212,6 @@ class PageListing extends HTMLElement {
<!-- Description -->
<section class="listing-description">
<h2>${t('listing.description')}</h2>
<div class="description-text">${this.formatDescription(this.listing.description)}</div>
</section>
@@ -746,7 +745,14 @@ style.textContent = /* css */`
filter: grayscale(1);
}
page-listing .listing-description,
page-listing .listing-description {
background: var(--color-bg-secondary);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
padding: var(--space-lg);
margin-bottom: var(--space-xl);
}
page-listing .listing-location-section {
margin-bottom: var(--space-xl);
}