Skip to content

Commit

Permalink
feat: larger height of gallery tab item container on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-anderson-x committed Apr 12, 2023
1 parent 6315c5a commit 350563c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion components/gallery/GalleryItemTabsPanel/GalleryItemTabsPanel.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<template>
<o-tabs v-model="activeTab" expanded content-class="o-tabs__content--fixed">
<o-tabs
v-model="activeTab"
expanded
content-class="o-tabs__content--fixed gallery-item-tab-panel">
<!-- offers -->
<DisablableTab
value="0"
Expand Down Expand Up @@ -65,3 +68,13 @@ watchEffect(() => {
collectionId.value = nft.value?.collection.id || ''
})
</script>
<style lang="scss">
@import '@/styles/abstracts/variables';
.o-tabs__content--fixed.gallery-item-tab-panel {
@include mobile {
height: 28rem;
}
}
</style>

0 comments on commit 350563c

Please sign in to comment.