From 74ed2460b358270af411169f47dc3a799d73d166 Mon Sep 17 00:00:00 2001 From: BOT Alex <44818698+MagicBOTAlex@users.noreply.github.com> Date: Sat, 8 Jun 2024 15:53:42 +0200 Subject: [PATCH] Progress in polishing --- src/routes/zhen/CVs/Comps/Contact.svelte | 14 ++++++++++---- src/routes/zhen/CVs/Comps/Education.svelte | 5 ++++- src/routes/zhen/CVs/Comps/Experience.svelte | 5 ++++- src/routes/zhen/CVs/Comps/OtherContact.svelte | 14 ++++++++++---- 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/src/routes/zhen/CVs/Comps/Contact.svelte b/src/routes/zhen/CVs/Comps/Contact.svelte index 1e9239c..a0c20eb 100644 --- a/src/routes/zhen/CVs/Comps/Contact.svelte +++ b/src/routes/zhen/CVs/Comps/Contact.svelte @@ -48,16 +48,22 @@ > div { &:first-child { width: 35%; - text-align: center; font-size: 4mm; + + display: grid; + place-content: center start; + + border-right: rgba(128, 128, 128, 0.4) dashed 0.1mm; } &:nth-child(2) { width: 65%; - font-size: 3.75mm; - display: flex; - align-self: flex-end; + font-size: 3.25mm; + display: grid; + place-content: center; + + padding-left: 1mm; } } } diff --git a/src/routes/zhen/CVs/Comps/Education.svelte b/src/routes/zhen/CVs/Comps/Education.svelte index 34ce132..05e335c 100644 --- a/src/routes/zhen/CVs/Comps/Education.svelte +++ b/src/routes/zhen/CVs/Comps/Education.svelte @@ -72,7 +72,10 @@ justify-items: start; width: 100%; - border-bottom: 0.25mm solid #000000; + + &:not(:last-child) { + border-bottom: 0.25mm solid #000000; + } & > div { padding-left: 3mm; diff --git a/src/routes/zhen/CVs/Comps/Experience.svelte b/src/routes/zhen/CVs/Comps/Experience.svelte index 4b07fb2..9edcf13 100644 --- a/src/routes/zhen/CVs/Comps/Experience.svelte +++ b/src/routes/zhen/CVs/Comps/Experience.svelte @@ -72,7 +72,10 @@ justify-items: start; width: 100%; - border-bottom: 0.25mm solid #000000; + + &:not(:last-child) { + border-bottom: 0.25mm solid #000000; + } & > div { padding-left: 3mm; diff --git a/src/routes/zhen/CVs/Comps/OtherContact.svelte b/src/routes/zhen/CVs/Comps/OtherContact.svelte index 1aef2ed..d3551ba 100644 --- a/src/routes/zhen/CVs/Comps/OtherContact.svelte +++ b/src/routes/zhen/CVs/Comps/OtherContact.svelte @@ -44,16 +44,22 @@ > div { &:first-child { width: 35%; - text-align: center; font-size: 4mm; + + display: grid; + place-content: center start; + + border-right: rgba(128, 128, 128, 0.4) dashed 0.1mm; } &:nth-child(2) { width: 65%; - font-size: 3.75mm; - display: flex; - align-self: flex-end; + font-size: 3.25mm; + display: grid; + place-content: center; + + padding-left: 1mm; } } }