Skip to content

Commit

Permalink
fix: adjust layout for CollectionInfoDrawer and improve Gallery view …
Browse files Browse the repository at this point in the history
…structure
  • Loading branch information
zurdi15 committed Feb 4, 2025
1 parent cb54ee3 commit 1089217
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,10 @@ async function updateCollection() {
z-index: 1;
}
.drawer-desktop {
top: 54px !important;
top: 56px !important;
}
.drawer-mobile {
top: 114px !important;
top: 110px !important;
width: calc(100% - 16px) !important;
}
</style>
6 changes: 4 additions & 2 deletions frontend/src/views/Gallery/Collection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,10 @@ onBeforeUnmount(() => {
</v-row>

<!-- Gallery list view -->
<v-row v-show="currentView == 2" no-gutters>
<game-data-table />
<v-row class="h-100" v-show="currentView == 2" no-gutters>
<v-col class="h-100 pt-4 pb-2">
<game-data-table class="h-100 mx-2" />
</v-col>
</v-row>
<fab-overlay />
</template>
Expand Down
6 changes: 4 additions & 2 deletions frontend/src/views/Gallery/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,10 @@ onBeforeUnmount(() => {
</v-row>

<!-- Gallery list view -->
<v-row v-show="currentView == 2" no-gutters>
<game-data-table />
<v-row class="h-100" v-show="currentView == 2" no-gutters>
<v-col class="h-100 pt-4 pb-2">
<game-data-table class="h-100 mx-2" />
</v-col>
</v-row>
<fab-overlay />
</template>
Expand Down

0 comments on commit 1089217

Please sign in to comment.