Skip to content

Commit

Permalink
Refactor album to work with new container layout
Browse files Browse the repository at this point in the history
  • Loading branch information
aSouchereau committed Jun 1, 2024
1 parent 2dbf81e commit a60a0d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Pages/Album.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import {useHead} from "@unhead/vue";
<div v-if="isFetching" class="loader-container">
<Loader />
</div>
<div v-else-if="isFinished">
<div v-else-if="isFinished" class="container">
<header class="album-header">
<h2>{{data.title}}</h2>
<p>{{data.description}}</p>
Expand All @@ -74,7 +74,7 @@ import {useHead} from "@unhead/vue";
}
}
}">
<MasonryWall :items="photos" :ssr-columns="1" :column-width="300" :gap="16">
<MasonryWall :items="photos" :ssr-columns="1" :column-width="250" :gap="10">
<template #default="{ item }">
<li class="gallery-item">
<a
Expand Down

0 comments on commit a60a0d1

Please sign in to comment.