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

Rewrite #16

Merged
merged 15 commits into from
Jun 18, 2022
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "project-segfault-website",
"version": "0.0.1",
"version": "2.0.0",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
Expand Down
5 changes: 3 additions & 2 deletions src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
<span>© 2021 - present, Project Segfault</span>

<div class="links">
<a href="https://matrix.to/#/#project-segfault:projectsegfau.lt">
<IconMatrix />
</a>
<a href="https://discord.gg/26EG7fFtfS">
<IconDiscord />
</a>
<a href="https://matrix.to/#/#project-segfault:projectsegfau.lt">
<IconMatrix />
<a href="https://github.com/ProjectSegfault">
<IconGitHub />
</a>
Expand Down
11 changes: 11 additions & 0 deletions src/lib/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@
text-decoration: none;
}

.links > * {
background-color: var(--accent-primary);
border: none;
border-radius: 10px;
padding: 1rem;
cursor: pointer;
color: var(--secondary);
font-family: var(--font-primary);
text-decoration: none;
}

img {
height: 36px;
border-radius: 50%;
Expand Down