Skip to content

Commit ebc8587

Browse files
authored
Merge branch 'main' into frontend/complex-search-filter
2 parents fbc9e26 + 44b884b commit ebc8587

3 files changed

Lines changed: 22 additions & 9 deletions

File tree

frontend/src/components/molecules/PaperList.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ const handleView = (paper: Paper) => emit('view', paper);
200200
elevation="1"
201201
class="paper-panel mb-3"
202202
rounded="xl"
203-
:ripple="false"
204203
style="border-radius: 12px !important"
205204
>
206205
<PaperCard
@@ -230,7 +229,6 @@ const handleView = (paper: Paper) => emit('view', paper);
230229
variant="tonal"
231230
size="small"
232231
elevation="1"
233-
:ripple="false"
234232
aria-label="Scroll back to top"
235233
@click="handleScrollToTop"
236234
>

frontend/src/components/organisms/project/ProjectDetailsSection.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ const handleMenuSelect = ({
6262
variant="text"
6363
size="small"
6464
color="medium-emphasis"
65-
:ripple="false"
6665
@click="isRenameDialogOpen = true"
6766
>
6867
<v-icon :icon="Pencil" size="20" />

frontend/src/vuetify.config.ts

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,27 @@ export default createVuetify({
8181
},
8282
},
8383
defaults: {
84-
global: { ripple: true },
85-
VTextField: { variant: 'outlined', density: 'comfortable', color: 'primary' },
86-
VSelect: { variant: 'outlined', density: 'comfortable' },
87-
VBtn: { color: 'primary', rounded: 'lg' },
88-
VCard: { rounded: 'lg' },
89-
VDataTable: { density: 'comfortable' },
84+
global: {
85+
ripple: false,
86+
},
87+
VTextField: {
88+
variant: 'outlined',
89+
density: 'comfortable',
90+
color: 'primary',
91+
},
92+
VSelect: {
93+
variant: 'outlined',
94+
density: 'comfortable',
95+
},
96+
VBtn: {
97+
color: 'primary',
98+
rounded: 'lg',
99+
},
100+
VCard: {
101+
rounded: 'lg',
102+
},
103+
VDataTable: {
104+
density: 'comfortable',
105+
},
90106
},
91107
});

0 commit comments

Comments
 (0)