Skip to content

Commit

Permalink
more changes from self review
Browse files Browse the repository at this point in the history
  • Loading branch information
gantoine committed Jan 30, 2025
1 parent 05c3852 commit 1080872
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ function clear() {
width="500"
v-model="activeCollectionsDrawer"
:class="{
'mx-2': !(!smAndDown && !activeCollectionsDrawer),
'my-2': !(smAndDown && !activeCollectionsDrawer),
'mx-2': smAndDown || activeCollectionsDrawer,
'my-2': !smAndDown || activeCollectionsDrawer,
'drawer-mobile': smAndDown,
'drawer-desktop': !smAndDown,
}"
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/common/Navigation/PlatformsDrawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ function clear() {
width="500"
v-model="activePlatformsDrawer"
:class="{
'mx-2': !(!smAndDown && !activePlatformsDrawer),
'my-2': !(smAndDown && !activePlatformsDrawer),
'mx-2': smAndDown || activePlatformsDrawer,
'my-2': !smAndDown || activePlatformsDrawer,
'drawer-mobile': smAndDown,
'drawer-desktop': !smAndDown,
}"
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/common/Navigation/SettingsDrawer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ async function logout() {
width="450"
v-model="activeSettingsDrawer"
:class="{
'mx-2': !(!smAndDown && !activeSettingsDrawer),
'my-2': !(smAndDown && !activeSettingsDrawer),
'mx-2': smAndDown || activeSettingsDrawer,
'my-2': !smAndDown || activeSettingsDrawer,
'drawer-mobile': smAndDown,
'drawer-desktop': !smAndDown,
}"
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/views/GameDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@ watch(
>
{{ t("rom.additional-content") }}
</v-tab>
<!-- TODO: user screenshots -->
<!-- <v-tab value="screenshots" >Screenshots</v-tab> -->
<v-tab
v-if="
smAndDown &&
Expand Down

0 comments on commit 1080872

Please sign in to comment.