diff --git a/src/components/common/LeftSection.vue b/src/components/common/LeftSection.vue index e317779..f977491 100644 --- a/src/components/common/LeftSection.vue +++ b/src/components/common/LeftSection.vue @@ -26,11 +26,29 @@ defineProps<{ font-weight: bolder; font-variant: small-caps; text-transform: capitalize; - background-color: lightblue; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; padding-top: 8px; padding-bottom: 8px; padding-left: 8px; text-align: center; + width: auto; +} +.title::before, +.title::after { + content: ""; + border-top: 1px solid gray; + width: 100%; +} + +.title::before { + margin-right: 12px; +} + +.title::after { + margin-left: 12px; } .body { flex: 1; diff --git a/src/components/experiences/MyExperiences.vue b/src/components/experiences/MyExperiences.vue index 2ba3d9e..4e4e677 100644 --- a/src/components/experiences/MyExperiences.vue +++ b/src/components/experiences/MyExperiences.vue @@ -4,19 +4,85 @@ import RightSection from "@/components/common/RightSection.vue"; - {{ message }} + + + {{ experience.company }} + + + {{ experience.endAt }} + + {{ experience.startAt }} + + + + {{ mission.description }} + + + + + - + diff --git a/vite.config.ts b/vite.config.ts index f828a4c..baeb8cb 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -7,6 +7,9 @@ import vueJsx from "@vitejs/plugin-vue-jsx"; // https://vitejs.dev/config/ export default defineConfig({ plugins: [vue(), vueJsx()], + server: { + port: 8311, + }, resolve: { alias: { "@": fileURLToPath(new URL("./src", import.meta.url)),