Skip to content

Commit

Permalink
- Travail pour globaliser les styles sur les composants
Browse files Browse the repository at this point in the history
  • Loading branch information
jvk88511334 committed Aug 26, 2024
1 parent ef3db75 commit e151c37
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Rcr.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
A<template>
<v-card elevation="0">
<v-card-title style="background-color: #295494; color: white">
<v-card-title>
<span>Sélection du RCR</span>
</v-card-title>
<v-card-text class="pt-5">
Expand Down
9 changes: 9 additions & 0 deletions src/plugins/vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,13 @@ export default createVuetify({
itemDarkTheme
},
},
defaults: {
VCardTitle: {
class: 'd-flex justify-space-between',
style: ({ $vuetify }) => ({
backgroundColor: $vuetify.theme.current.colors.primary,
color: 'white',
}),
},
},
})
2 changes: 1 addition & 1 deletion src/views/Exemplarisation/ExempSteps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:complete="currentStep > 0"
:editable="currentStep > 0"
icon="mdi-numeric-1"
title="Séléction du RCR"
title="Sélection du RCR"
:subtitle="demande ? 'Demande n°'+demande.id : 'Demande'"
>
</v-stepper-item>
Expand Down

0 comments on commit e151c37

Please sign in to comment.