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

Added BSky to individuals #67

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@
</div>
{/if}
<div class="footer primary-bg">
<a href="https://bsky.app/profile/dddsouthwest.bsky.social" target="_blank">
<i class="fa-brands fa-bluesky fa-3x" title="DDD South West BlueSky"></i>
</a>
<a href="https://twitter.com/dddsouthwest" target="_blank">
<i class="fa-brands fa-twitter fa-3x" title="DDD South West Twitter"></i>
</a>
<a href="mailto:[email protected]">
<i class="fa-solid fa-envelope fa-3x icon" title="DDD South West Email"></i>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the only icon with the new icon class which makes it light up slightly differently to the other icons. Was this intentional?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No - I thought I found one which matched the rest. If I used the same classes for some reason the background went a weird purple colour

</a>
<a href="https://www.linkedin.com/company/ddd-south-west/" target="_blank">
<i class="fa-brands fa-linkedin fa-3x" title="DDD South West LinkedIn"></i>
</a>
Expand All @@ -43,4 +49,13 @@
h2 {
padding: 0 10px;
}

.icon {
color: black;
transition: color 0.3s;
}

.icon:hover {
color: white;
}
</style>
6 changes: 6 additions & 0 deletions src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
imageName: 'carl.jpg',
email: '[email protected]',
twitter: 'carlcod_es',
bsky: 'carlcod.es',
linkedIn: 'carl-sargunar-63b5814'
},
{
Expand Down Expand Up @@ -85,6 +86,11 @@
<img src="../images/team/{member.imageName}" alt={member.name} class="boop-effect" />
<span>{member.name}</span>
<span>
{#if member.bsky}
<a href="https://bsky.app/profile/{member.bsky}" target="_blank">
<i class="fa-brands fa-bluesky fa-2x icon" title="{member.name} BlueSky"></i>
</a>
{/if}
{#if member.twitter}
<a href="https://twitter.com/{member.twitter}" target="_blank">
<i class="fa-brands fa-twitter fa-2x icon" title="{member.name} Twitter"></i>
Expand Down
Loading