Skip to content

Commit

Permalink
THE-1167 contraste boutons exporter
Browse files Browse the repository at this point in the history
  • Loading branch information
clementdelafontaine committed Apr 10, 2024
1 parent acb5d61 commit 3df1b05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion components/common/ExportButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
>
<v-list-item-title class="export-titles">{{ $t(index) }}</v-list-item-title>
<v-list-item-subtitle v-for="file in exportType" class="export-buttons">
<v-btn color="secondary-darken-2" density="compact" :href="file.url">
<v-btn color="secondary-darken-3" density="compact" :href="file.url">
{{ file.title }}
</v-btn>
</v-list-item-subtitle>
Expand Down Expand Up @@ -68,6 +68,9 @@ exportTypeList.value = {
max-width: 90%;
font-weight: 500;
:deep(.mdi-upload-box) {
color: rgb(var(--v-theme-secondary-darken-2));
}
:deep(.mdi-file-export-outline) {
color: rgb(var(--v-theme-dark-blue));
}
Expand Down
2 changes: 1 addition & 1 deletion components/common/ExportQueryButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<v-list-item v-for="(exportType, index) in exportTypeList" :key="index">
<v-list-item-title class="export-titles">{{ $t(index) }}</v-list-item-title>
<v-list-item-subtitle v-for="file in exportType" class="export-buttons">
<v-btn color="secondary-darken-2" density="compact" :href="file.url" target="_blank">
<v-btn color="secondary-darken-3" density="compact" :href="file.url" target="_blank">
{{ file.title }}
</v-btn>
</v-list-item-subtitle>
Expand Down

0 comments on commit 3df1b05

Please sign in to comment.