feat(projects): fixed minor placement issues and removing excess proejcts from being shown

This commit is contained in:
2025-07-17 20:53:26 -06:00
parent 10b3091264
commit 5845f1180b
2 changed files with 3 additions and 1 deletions

View File

@ -102,6 +102,7 @@
div div ul div {
display: flex;
flex-direction: row;
gap: 0px;
}
a {

View File

@ -3,7 +3,7 @@
let { independent_page = true, techTablePromise = null } = $props();
let limitProjects = $derived(independent_page ? 0 : 8);
let limitProjects = $derived(independent_page ? 0 : 6);
let projectsPromise = $state(null);
let techPromise = $state(null);
@ -171,5 +171,6 @@
flex-direction: row;
flex-wrap: wrap;
column-gap: 1svw;
justify-content: space-evenly;
}
</style>