Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: styling changes #103

Merged
merged 11 commits into from
Oct 16, 2023
22 changes: 11 additions & 11 deletions config/content/EventPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,48 +4,48 @@ export default [
type: 'Technical',
image:
'https://res.cloudinary.com/dme9vltjf/image/upload/' +
'v1697370432/Inno%202k23/david-leveque-GpNOhig3LSU-unsplash_11zon_y5ajhn.jpg',
'v1697438367/Instagram_post_-_7_y5szxa.png',
},
{
title: 'Pro Shows',
type: 'Pro',
image:
'https://res.cloudinary.com/dme9vltjf/image/upload/' +
'v1697370431/Inno%202k23/Pro_Sho_11zon_bowwb3.jpg',
'v1697438367/Instagram_post_-_6_tkvcsd.png',
},
{
title: 'Workshops',
type: 'Workshop',
image:
'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370432/' +
'Inno%202k23/lexscope-0k2mMcdTOYU-unsplash_11zon_zemsvp.jpg',
'https://res.cloudinary.com/dme9vltjf/image/upload/' +
'v1697438367/Instagram_post_-_5_mcibqo.png',
},
{
title: 'Guest Lectures',
type: 'Guest-Lectures',
image:
'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370431/' +
'Inno%202k23/miguel-henriques-RfiBK6Y_upQ-unsplash_11zon_a1nvuc.jpg',
'https://res.cloudinary.com/dme9vltjf/image/upload/' +
'v1697438367/Instagram_post_-_3_z3tlbs.png',
},
{
title: 'Exhibitions',
type: 'Exhibitions',
image:
'https://res.cloudinary.com/dme9vltjf/image/upload/' +
'v1697370431/Inno%202k23/sergio-rota-lq-3u9EqNb4-unsplash_11zon_mpy2wj.jpg',
'v1697438366/Instagram_post_-_4_zxpros.png',
},
{
title: 'Fun Events',
type: 'Fun',
image:
'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370432/' +
'Inno%202k23/jonny-gios-8wKTIZ1KEzY-unsplash_11zon_frv6up.jpg',
'https://res.cloudinary.com/dme9vltjf/image/upload/' +
'v1697439946/Inno%202k23/Instagram_post_-_8_plf5ek.png',
},
{
title: 'Others',
type: 'Other',
image:
'https://res.cloudinary.com/dme9vltjf/image/upload/v1697370957/' +
'Inno%202k23/samantha-gades-fIHozNWfcvs-unsplash_bi17wn_3_evkqzx.jpg',
'https://res.cloudinary.com/dme9vltjf/image/upload/' +
'v1697439946/Inno%202k23/Instagram_post_-_9_yhwfgk.png',
},
];
13 changes: 7 additions & 6 deletions src/components/shared/SectionLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ export const SectionTitle = styled(Body1)`
${({ accent }) =>
accent
? `
background: var(--brand-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: #EABCFF;
`
: ''}
: ''}//background: var(--brand-gradient);
//-webkit-background-clip: text;
//
//background-clip: text;
//-webkit-text-fill-color: transparent;
`;

export const CustomHGroup = styled.hgroup`
Expand All @@ -48,12 +49,12 @@ const SectionHeader = ({ title }) => (

const SectionFooter = ({ title, link }) => (
<CustomHGroup>
<HorizontalLine />
<Link to={link}>
<SectionTitle accent right>
{title}
</SectionTitle>
</Link>
<HorizontalLine />
</CustomHGroup>
);

Expand Down
Loading