Skip to content

Commit

Permalink
fix(explore): horizontal scroll on explore page
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-IS authored Sep 20, 2023
2 parents 6ab08e5 + c03637f commit 0e84c12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/dho/Explore.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,13 @@ export default {
</script>
<template lang="pug">
q-page.page-explore
q-page.page-explore(:style="'overflow-x: hidden'")
.row.full-width(v-if="isExploreBannerVisible")
base-banner(v-bind="banner" @onClose="hideExploreBanner" :compact="!$q.screen.gt.sm")
template(v-slot:buttons)
a(target="_tab" href="https://hypha.earth/")
q-btn.q-px-lg.h-btn1(no-caps rounded unelevated color="secondary" href="https://hypha.earth/" target="_blank") {{ $t('pages.dho.explore.discoverMore') }}
.row.q-py-md(:class="{ 'block': $q.screen.lt.sm }")
.row.q-py-md(:class="{ 'block': $q.screen.lt.sm, 'overflow-x': 'hidden' }")
.col-sm-12.col-md-12.col-lg-9(ref="scrollContainer" v-if="exploreBy === EXPLORE_BY.DAOS")
q-infinite-scroll(@load="onLoad" :offset="250" :scroll-target="$refs.scrollContainer" ref="scroll")
.row
Expand Down

0 comments on commit 0e84c12

Please sign in to comment.