Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniDigger committed Mar 26, 2024
1 parent 9278d99 commit 9e34871
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
13 changes: 8 additions & 5 deletions src/components/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ const projects: Project[] = [
},
{
title: "Waterfall",
description: "A Discontinued BungeeCord proxy fork that aimed to improve performance and stability.",
description:
"A Discontinued BungeeCord proxy fork that aimed to improve performance and stability.",
repo: "PaperMC/Waterfall",
link: "/waterfall",
eol: true,
Expand All @@ -42,10 +43,12 @@ function Project(project: Project) {
return (
<div className={"project"}>
<div className={"flex"}>
<Link className={"projectGitHub archivedProjectTitle"} to={`https://github.com/${project.repo}`}>
{project.title}{
project.eol && <Icon style={{ marginLeft: "8px" }} icon={"mdi:archive"} height={25} />
}
<Link
className={"projectGitHub archivedProjectTitle"}
to={`https://github.com/${project.repo}`}
>
{project.title}
{project.eol && <Icon style={{ marginLeft: "8px" }} icon={"mdi:archive"} height={25} />}
</Link>
<p>{project.description}</p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/css/projects.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
}

.archivedProjectTitle:hover {
color: rgb(239,68,68);
color: rgb(239, 68, 68);
}

.archivedProjectButton:hover {
background-color: rgb(239,68,68);
border: 1px solid rgb(239,68,68);
background-color: rgb(239, 68, 68);
border: 1px solid rgb(239, 68, 68);
}

.projects {
Expand Down

0 comments on commit 9e34871

Please sign in to comment.