Skip to content

Commit

Permalink
Fixed visual bug
Browse files Browse the repository at this point in the history
Fixed a bug on the projects page, where the project version and status would overlap in certain aspect ratios
  • Loading branch information
JonasunderscoreJones committed Oct 1, 2023
1 parent 37bbc8d commit 9252cc2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/ProjectComponent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<div />
<div class="project-topline">
<div class="project-title">{project.title}</div>
<div>
<div class="project-titleinfo">
<a
class="project-status"
style="color: {project.statuscolor};border-color:{project.statuscolor}"
Expand Down Expand Up @@ -117,4 +117,9 @@
align-items: center;
width: 100%;
}
.project-titleinfo {
display: flex;
align-items: center;
}
</style>

0 comments on commit 9252cc2

Please sign in to comment.