mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-05-10 15:36:57 +02:00
Update Experiences
This commit is contained in:
parent
e283fc2c04
commit
d432f1a9f9
6 changed files with 40 additions and 2 deletions
|
@ -74,6 +74,7 @@ $aboutCVShadow: 0 0 15px 0 var(--color-accent-shadow-profile);
|
|||
--color-notice: #{rgba(map.get($theme, "accent"), 0.15)};
|
||||
|
||||
--color-cv-edu: #{map.get($theme, "blue")};
|
||||
--color-cv-intern-apprentice: #{map.get($theme, "orange")};
|
||||
|
||||
@media (prefers-color-scheme: light) {
|
||||
--color-background: #{map.get($theme-light, "background")};
|
||||
|
@ -107,6 +108,7 @@ $aboutCVShadow: 0 0 15px 0 var(--color-accent-shadow-profile);
|
|||
--color-skill-5: #{map.get($theme-light, "purple")};
|
||||
|
||||
--color-cv-edu: #{map.get($theme-light, "blue")};
|
||||
--color-cv-intern-apprentice: #{map.get($theme-light, "orange")};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ import { GatsbyImage } from "gatsby-plugin-image";
|
|||
|
||||
import {
|
||||
ArrowRight,
|
||||
BookOpen,
|
||||
Briefcase,
|
||||
ExternalLink,
|
||||
GraduationCap,
|
||||
|
@ -259,6 +260,12 @@ const AboutPage = (props) => {
|
|||
"job-experience" && (
|
||||
<Briefcase />
|
||||
)}
|
||||
{(careerEntry.type ==
|
||||
"apprenticeship" ||
|
||||
careerEntry.type ==
|
||||
"internship") && (
|
||||
<BookOpen />
|
||||
)}
|
||||
{careerEntry.title[lang]}
|
||||
</span>
|
||||
{careerEntry.description &&
|
||||
|
|
|
@ -441,5 +441,13 @@
|
|||
&.entryTypeeducation {
|
||||
--entry-color: var(--color-cv-edu);
|
||||
}
|
||||
|
||||
&.entryTypeapprenticeship {
|
||||
--entry-color: var(--color-cv-intern-apprentice);
|
||||
}
|
||||
|
||||
&.entryTypeinternship {
|
||||
--entry-color: var(--color-cv-intern-apprentice);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue