Skip to content

Commit

Permalink
Merge pull request #6065 from Ocelot-Social-Community/5984-fix-gap-ne…
Browse files Browse the repository at this point in the history
…ws-feed

fix(webapp): fix gap news feed
  • Loading branch information
maeckes1 authored Mar 10, 2023
2 parents 8e874b6 + 4a44670 commit 8c31546
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions webapp/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,16 @@
</div>
</div>
</ds-grid-item>
<ds-space :margin-bottom="{ base: 'small', md: 'base', lg: 'large' }" />
<!-- Placeholder/Space Row -->
<ds-grid-item :row-span="1" column-span="fullWidth" />
<!-- hashtag filter -->
<ds-grid-item v-if="hashtag" :row-span="2" column-span="fullWidth">
<hashtags-filter :hashtag="hashtag" @clearSearch="clearSearch" />
</ds-grid-item>
<ds-space :margin-bottom="{ base: 'small', md: 'base', lg: 'large' }" />
<!-- donation info -->
<ds-grid-item v-if="showDonations" class="top-info-bar" :row-span="1" column-span="fullWidth">
<donation-info :goal="goal" :progress="progress" />
</ds-grid-item>
<ds-space :margin-bottom="{ base: 'small', md: 'base', lg: 'large' }" />
<!-- news feed -->
<template v-if="hasResults">
<masonry-grid-item
Expand Down Expand Up @@ -418,5 +418,8 @@ export default {
font-size: 23px;
z-index: 10;
}
.ds-grid {
padding-top: 1em;
}
}
</style>

0 comments on commit 8c31546

Please sign in to comment.