Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Elweyn committed Jun 27, 2024
1 parent b8861e0 commit 3e9cf31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion frontend/src/components/menu/BottomMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,20 @@ const location = ref<'bottom' | 'right' | 'left' | 'end' | 'top' | 'start'>('bot
transform: translateX(20px);
}
}
.create-button-mobile {
transform: translate(20px, 30px);
z-index: 1;
transform: translate(20px, 30px);
}
.navigation-drawer-box {
bottom: 65px;
}
.v-navigation-drawer {
scrollbar-width: thin;
}
.v-navigation-drawer__content {
scrollbar-width: thin;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<v-navigation-drawer
:model-value="drawer"
:location="location"
app
width="auto"
class="menu-drawer-top"
@update:model-value="updateDrawer"
Expand All @@ -26,6 +25,7 @@ import { VAvatar, VIcon, VImg } from 'vuetify/components'
import ListElement from '#components/vuetify/Atoms/ListElement.vue'
import SearchField from '#components/vuetify/Molecules/SearchField.vue'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const props = defineProps({
drawer: {
type: Boolean,
Expand Down

0 comments on commit 3e9cf31

Please sign in to comment.