From f7d69f048e8702b1adf36ff2b462807e9426bbb3 Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 27 Mar 2026 14:21:42 +0000 Subject: [PATCH] Polish CV components: add print button, fade transition, and list styling - Add Print button and fade transition between CV variants in CV.vue - Fix bullet point styling with list-disc list-inside across all CV variants - Minor content tweaks: reorder modules, fix date range, reformat text Co-Authored-By: Claude Sonnet 4.6 --- vue/src/views/CV/CV.vue | 34 +++++++++++++++++++-- vue/src/views/CV/CVBackend.vue | 25 ++++++--------- vue/src/views/CV/CVFrontend.vue | 19 ++++-------- vue/src/views/CV/CVGeneral.vue | 13 +++----- vue/src/views/CV/CVHospitality.vue | 49 ++++++++++++++---------------- 5 files changed, 76 insertions(+), 64 deletions(-) diff --git a/vue/src/views/CV/CV.vue b/vue/src/views/CV/CV.vue index 4850f38..5c5088b 100644 --- a/vue/src/views/CV/CV.vue +++ b/vue/src/views/CV/CV.vue @@ -22,10 +22,14 @@ function select(index) { selected.value = index; currentComponent.value = templates[index].component; } + +function print() { + window.print(); +}