RiadhAdrani / slick-portfolio-svelte

Vercel-like style portfolio template for developers.
https://riadhadrani.github.io/slick-portfolio-svelte/
203 stars 105 forks source link

'Color' property doesn't work in experiences parameters #14

Closed alessioamo closed 10 months ago

alessioamo commented 10 months ago

Changing the color property doesn't affect the hovering color on the experiences page like it does on the projects page.

const MY_EXPERIENCES: Array<Experience> = [
    {
        slug: 'open-sourcer',
        company: 'Self-employed',
        description: 'Creating awesome tools for developers.',
        contract: ContractType.SelfEmployed,
        type: 'Software Development',
        location: 'Home',
        period: { from: new Date() },
        skills: getSkills('ts', 'js'),
        name: 'Open Source Developer',
        color: '#ffffff',
        links: [],
        logo: Assets.Unknown,
        shortDescription: ''
    }
]