1
0

fix(project): save the last 6 projects in history, show only 5 on desktop

The project grid on the home page with the recently visited projects now contains an even number of projects which makes for a much nicer grid (because it's now uniform).
This commit is contained in:
kolaente
2024-04-07 14:34:18 +02:00
parent 5892622676
commit 6641cbebc2
3 changed files with 10 additions and 3 deletions

View File

@ -63,6 +63,10 @@ const filteredProjects = computed(() => {
@media screen and (min-width: $widescreen) {
--project-grid-columns: 5;
.project-grid-item:nth-child(6) {
display: none;
}
}
}