Skip to content

Commit

Permalink
fixup! Update collection page design
Browse files Browse the repository at this point in the history
  • Loading branch information
siiptuo committed Nov 20, 2024
1 parent 02625a3 commit c373ca2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/views/CollectionView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
<main id="collectionlanding" class="pagewidth">
<div class="flex">
<main class="infoBox column">
<section class="sitemap" v-if="response.sites.length > 0">
<section id="sitemap" v-if="response.sites.length > 0">
<SuperMap :sites="response.sites" :zoom="3" />
</section>
<section class="summary">
<section id="summary">
<dl>
<dt>Date span</dt>
<dd>{{ response.startDate }} &ndash; {{ response.endDate }}</dd>
Expand All @@ -31,7 +31,7 @@
<dt>Total size</dt>
<dd>{{ humanReadableSize(response.size) }}</dd>
<dt>Products</dt>
<dd>
<dd id="products">
<div v-for="product in response.products" :key="product.id">
<img :src="getProductIcon(product.id)" class="product" />
{{ product.humanReadableName }}
Expand Down Expand Up @@ -155,7 +155,7 @@ main.column {
}
}
.sitemap {
#sitemap {
height: 300px;
padding: 0;
}
Expand Down

0 comments on commit c373ca2

Please sign in to comment.