Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@
background-color: rgba(var(--v-theme-primary), 0.05);
}
.background-color-secondary-lighten-5 {
background-color: rgba(var(--v-theme-secondary), 0.05);
background-color: rgba(var(--v-theme-secondary), 0.05) !important;
}
.background-color-secondary-lighten-10 {
background-color: rgba(var(--v-theme-secondary), 0.1) !important;
}
3 changes: 3 additions & 0 deletions src/components/EventCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,7 @@ const isTodayEvent = computed(() => {
</script>

<style scoped>
.v-card {
box-shadow: 0 2px 4px rgba(var(--v-theme-secondary), 0.2) !important;
}
</style>
2 changes: 1 addition & 1 deletion src/components/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-footer class="flex-grow-0 background-color-secondary-lighten-5">
<v-footer class="flex-grow-0 background-color-secondary-lighten-10">
<v-row no-gutters>
<v-col class="text-center">
<p>
Expand Down
2 changes: 1 addition & 1 deletion src/views/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<br />

<v-alert color="primary" variant="outlined" density="compact">
N'hésitez pas à faire des retours, remonter des bugs, ou proposer des améliorations sur GitHub.
N'hésitez pas à faire des retours, remonter des bugs, ou proposer des améliorations sur GitHub 💛
</v-alert>
</template>

Expand Down