Skip to content

Commit

Permalink
fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
khabzox committed Aug 29, 2024
1 parent 5ffa1e1 commit 463cff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/nextjs-app/app/search/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const SearchPage = () => {
{results.length === 0 ? (
<p className="text-lg text-subtle">Aucun résultat trouvé.</p>
) : (
<ul className="space-y-4 grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6 pb-4">
<ul className="space-y-2 md:space-y-0 grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-6 pb-4">
{results.map((result) => (
<li key={result.id} className="relative">
<Link href={result.downloadLink} target="_blank" aria-label={`Télécharger ${result.title}`} onClick={() => handleFileClick(result.id)}>
Expand Down

0 comments on commit 463cff5

Please sign in to comment.