Skip to content

Commit

Permalink
Remove cursor:pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
Bettelstab committed Jul 10, 2024
1 parent 09e9db0 commit 40b46b5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 13 deletions.
7 changes: 3 additions & 4 deletions frontend/src/components/menu/BottomMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ const updateDrawer = (value: boolean) => {
background: var(--v-bottom-menu-background) !important;
backdrop-filter: blur(20px);
border-radius: 30px 30px 0 0;
}
.camera-button {
cursor: pointer;
transform: translate(20px);
.camera-button {
transform: translateX(20px);
}
}
.create-button-mobile {
Expand Down
6 changes: 1 addition & 5 deletions frontend/src/components/menu/TopMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<LightDarkSwitch class="d-none d-lg-flex" />
</v-col>
<v-col class="d-flex align-center justify-end">
<Circle class="camera-button" @click="toggleDrawer">
<Circle @click="toggleDrawer">
<v-icon icon="$camera"></v-icon>
</Circle>
<UserInfo class="ml-2" />
Expand Down Expand Up @@ -66,8 +66,4 @@ const location = ref<'bottom' | 'right' | 'left' | 'end' | 'top' | 'start'>('rig
top: 0;
z-index: 1000;
}
.camera-button {
cursor: pointer;
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ exports[`TopMenu > renders 1`] = `
data-v-e787b5f9=""
>
<div
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center camera-button"
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center"
data-v-39e8094e=""
data-v-e787b5f9=""
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ exports[`DefaultLayout > renders 1`] = `
data-v-e787b5f9=""
>
<div
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center camera-button"
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center"
data-v-39e8094e=""
data-v-e787b5f9=""
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/index/__snapshots__/Page.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ exports[`IndexPage > without apollo error > renders 1`] = `
data-v-e787b5f9=""
>
<div
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center camera-button"
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center"
data-v-39e8094e=""
data-v-e787b5f9=""
>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/room/__snapshots__/Page.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ exports[`Room Page > renders 1`] = `
data-v-e787b5f9=""
>
<div
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center camera-button"
class="circle rounded-circle border-sm text-icon pa-2 d-flex justify-center align-center"
data-v-39e8094e=""
data-v-e787b5f9=""
>
Expand Down

0 comments on commit 40b46b5

Please sign in to comment.