Skip to content

Commit

Permalink
fix: hide horizontal scrollbar in StartPrintDialog.vue (#2075)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou authored Dec 17, 2024
1 parent 7ec9e19 commit ea1dd67
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/dialogs/StartPrintDialog.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
<template>
<v-dialog v-model="bool" :max-width="400" @click:outside="closeDialog" @keydown.esc="closeDialog">
<v-dialog
v-model="bool"
:max-width="400"
content-class="overflow-x-hidden"
@click:outside="closeDialog"
@keydown.esc="closeDialog">
<v-card>
<div v-if="file.big_thumbnail" class="d-flex align-center justify-center" style="min-height: 200px">
<v-img
Expand Down

0 comments on commit ea1dd67

Please sign in to comment.