|
30 | 30 | {#if teamMember.linkedin}
|
31 | 31 | <a
|
32 | 32 | href={teamMember.linkedin}
|
33 |
| - class="opacity-0 transition-all duration-500 ease-out group-hover:opacity-100" |
34 |
| - aria-label="{teamMember.name}'s LinkdIn" |
| 33 | + class="h-[15%] w-[15%] opacity-0 transition-all duration-500 ease-out group-hover:opacity-100" |
| 34 | + aria-label="{teamMember.name}'s LinkedIn" |
35 | 35 | >
|
36 |
| - <Icon src={Icons.Linkedin} color="white" size="2.5vw" /></a |
| 36 | + <Icon src={Icons.Linkedin} color="white" size="100%" /></a |
37 | 37 | >
|
38 | 38 | {/if}
|
39 | 39 | {#if teamMember.gitHub}
|
40 | 40 | <a
|
41 | 41 | href={teamMember.gitHub}
|
42 |
| - class="opacity-0 transition-all duration-500 ease-out group-hover:opacity-100" |
| 42 | + class="h-[15%] w-[15%] opacity-0 transition-all duration-500 ease-out group-hover:opacity-100" |
43 | 43 | aria-label="{teamMember.name}'s GitHub"
|
44 |
| - ><Icon src={Icons.Github} color="white" size="2.5vw" /></a |
| 44 | + ><Icon src={Icons.Github} color="white" size="100%" /></a |
45 | 45 | >
|
46 | 46 | {/if}
|
47 | 47 | {#if teamMember.customWebsites}
|
48 | 48 | {#each teamMember.customWebsites as customWebsite}
|
49 | 49 | <a
|
50 | 50 | href={customWebsite.url}
|
51 |
| - class="opacity-0 transition-all duration-500 ease-out group-hover:opacity-100" |
| 51 | + class="h-[15%] w-[15%] opacity-0 transition-all duration-500 ease-out group-hover:opacity-100" |
| 52 | + aria-label="{teamMember.name}'s custom website" |
52 | 53 | >
|
53 | 54 | {#if customWebsite.iconPath}
|
54 | 55 | <img
|
55 | 56 | src={customWebsite.iconPath}
|
56 |
| - alt="Icon of of a custom social website" |
57 |
| - class="h-[2.5vw] w-[2.5w] object-scale-down" |
| 57 | + alt="Icon of {teamMember.name}'s custom website" |
| 58 | + class="h-full w-full object-cover" |
58 | 59 | />
|
59 | 60 | {:else}
|
60 |
| - <Icon src={Icons.Globe} color="white" size="2.5vw" /> |
| 61 | + <Icon src={Icons.Globe} color="white" size="100%" /> |
61 | 62 | {/if}
|
62 | 63 | </a>
|
63 | 64 | {/each}
|
|
70 | 71 | />
|
71 | 72 | <img
|
72 | 73 | src={teamMember.photoPath}
|
73 |
| - alt="NI member {teamMember.name}" |
| 74 | + alt="NIAFEUP member {teamMember.name}" |
74 | 75 | class="z-0 h-full w-full object-cover"
|
75 | 76 | />
|
76 | 77 | </div>
|
|
0 commit comments