From 461729809e205bce3827db9a99b10db1002331ff Mon Sep 17 00:00:00 2001 From: Adam French Date: Fri, 27 Mar 2026 15:16:43 +0000 Subject: [PATCH] Fixing template by removing margins and spacing nicely --- vue/src/views/CV/CV.vue | 14 +- vue/src/views/CV/CVBackend.vue | 370 ++++++++++++++------------- vue/src/views/CV/CVFrontend.vue | 369 ++++++++++++++------------- vue/src/views/CV/CVGeneral.vue | 372 ++++++++++++++------------- vue/src/views/CV/CVHospitality.vue | 262 ++++++++++--------- vue/src/views/CV/CVTemp.vue | 397 +++++++++++++++++++++++++++++ vue/src/views/CV/Project.vue | 2 +- 7 files changed, 1136 insertions(+), 650 deletions(-) create mode 100644 vue/src/views/CV/CVTemp.vue diff --git a/vue/src/views/CV/CV.vue b/vue/src/views/CV/CV.vue index 5c5088b..60dab26 100644 --- a/vue/src/views/CV/CV.vue +++ b/vue/src/views/CV/CV.vue @@ -3,16 +3,16 @@ import { ref, shallowRef, defineAsyncComponent } from "vue"; import CVGeneral from "./CVGeneral.vue"; import CVBackend from "./CVBackend.vue"; import CVFrontend from "./CVFrontend.vue"; +import CVTemp from "./CVTemp.vue"; -const CVHospitality = defineAsyncComponent(() => - import("./CVHospitality.vue"), -); +const CVHospitality = defineAsyncComponent(() => import("./CVHospitality.vue")); const templates = [ { label: "General", component: CVGeneral }, { label: "Backend", component: CVBackend }, { label: "Frontend", component: CVFrontend }, { label: "Hospitality", component: CVHospitality }, + { label: "Temp", component: CVTemp }, ]; const selected = ref(0); @@ -72,7 +72,9 @@ function print() { color: #333; cursor: pointer; font-size: 0.9rem; - transition: background 0.15s, color 0.15s; + transition: + background 0.15s, + color 0.15s; } .cv-btn:hover { @@ -90,7 +92,9 @@ function print() { .cv-fade-enter-active, .cv-fade-leave-active { - transition: opacity 0.15s ease, transform 0.15s ease; + transition: + opacity 0.15s ease, + transform 0.15s ease; } .cv-fade-enter-from { diff --git a/vue/src/views/CV/CVBackend.vue b/vue/src/views/CV/CVBackend.vue index 99303fc..38be126 100644 --- a/vue/src/views/CV/CVBackend.vue +++ b/vue/src/views/CV/CVBackend.vue @@ -5,187 +5,204 @@ import Project from "./Project.vue";