Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

Commit 0e3e393

Browse files
committed
fix(team-landing): style and assets fixes
1 parent 68b033d commit 0e3e393

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

src/pages/app-team-landing/app-team-landing.scss

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ section.team-landing {
33
font-family: 'Muli', sans-serif;
44
padding: 73px 0 0 0;
55

6+
@include media-breakpoint-down(md) {
7+
padding: 60px 0 0 0;
8+
}
9+
10+
@include media-breakpoint-down(sm) {
11+
padding: 73px 0 0 0;
12+
}
13+
614
h1 {
715
@include media-breakpoint-down(md) {
816
font-size: 1.75rem;
@@ -210,7 +218,7 @@ section.team-landing {
210218
margin: 3rem 0;
211219
}
212220
@include media-breakpoint-down(md) {
213-
margin: 2rem 0;
221+
margin: 3rem 0;
214222
}
215223
font-size: 2.63rem;
216224
font-weight: 600;

src/pages/app-team-landing/app-team-landing.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export class AppTeamLanding {
106106
skills: ['Front-end Wizard ✨', 'Angular', 'Ionic', 'Firebase', 'StencilJS', 'RxJS', 'NGXS', 'NGRX', 'Redux', 'NodeJS'],
107107
team: 'development',
108108
backgroundPhoto: '/assets/bios-background-fernando.png',
109-
headshotPhoto: '/assets/headshot-fernando.png',
109+
headshotPhoto: '/assets/headshot-fer.png',
110110
metatags: {
111111
title: 'Fernando Del Olmo - Software Engineer | OpenForge',
112112
description:
@@ -148,6 +148,7 @@ export class AppTeamLanding {
148148
skills: ['Angular', 'Ionic', 'Typescript', 'Firebase', 'Scrum'],
149149
team: 'development',
150150
backgroundPhoto: '/assets/bios-background-luis.png',
151+
headshotPhoto: '/assets/headshot-luis.png',
151152
metatags: {
152153
title: 'Luis Chacon - Software Engineer | OpenForge',
153154
description:
@@ -162,7 +163,7 @@ export class AppTeamLanding {
162163
surname: 'Del Valle',
163164
title: translate('about.team.member.title.developer'),
164165
headerText:
165-
'Claudio began programming early in High School as a way to learn more about robotics. After being introduced to OpenForge; and stemming from his love for creating and a passion for continuous improvement, Web Development became his main focus. Finally, a couple of years (and a bachelor’s degree in Computer Engineering) later, Claudio enjoys keeping up with the newest trends in web development; especially those related to Ionic and Angular.',
166+
'Claudio began programming early in High School as a way to learn more about robotics. After being introduced to OpenForge; and stemming from his love for creating and a passion for continuous improvement, Web Development became his main focus. Claudio graduated with a degree in Computer Engineering and still enjoys keeping up with the newest trends in web development; especially those related to Ionic and Angular. He acts as both a Project Manager & Developer.',
166167
bodyText:
167168
'Like most of the developers at OpenForge, Claudio is involved in the scoping and development process of mobile apps. He enjoys the discovery process and lends his technical opinion wherever needed to improve the overall product. He enjoys keeping up with the latest web development trends and sharing his knowledge with the rest of the team.',
168169
skills: ['NodeJS', 'RxJS', 'Angular', 'Ionic', 'StencilJS', 'Firebase'],
@@ -434,6 +435,7 @@ export class AppTeamLanding {
434435
};
435436
}
436437
window.addEventListener('resize', () => {
438+
const backgroundPhoto = this.changeImageFormat(this.data[this.match.params.member].backgroundPhoto);
437439
const hero = document.querySelector('.hero') as HTMLElement;
438440
if (window.innerWidth > 767.98) {
439441
hero.style.backgroundColor = '#292A2D';

0 commit comments

Comments
 (0)