fixed spacing on grid

This commit is contained in:
Víctor Losada Hernández
2026-09-06 11:17:18 +02:00
parent 52aa1b99f2
commit b2941881a7
2 changed files with 7 additions and 5 deletions
@@ -133,7 +133,7 @@ const BrewItem = ({
})}
</div>
) : null}
<span className='brewAuthors' title={`Authors:\n${brew.authors?.join('\n')}`}>
<div className='brewAuthors' title={`Authors:\n${brew.authors?.join('\n')}`}>
<i className='fas fa-user' />{' '}
{brew.authors?.map((author, index)=>(
<React.Fragment key={index}>
@@ -145,7 +145,7 @@ const BrewItem = ({
{index < brew.authors.length - 1 && ', '}
</React.Fragment>
))}
</span>
</div>
{brew.pageCount && (
<span className='brewPages' aria-label={`${brew.pageCount} pages`} title={`Page count: ${brew.pageCount}`}>
<span aria-hidden='true'><i className='far fa-file' /> {brew.pageCount}</span>
@@ -175,9 +175,11 @@
margin-right: 12px;
line-height: 1.5em;
a {
color: inherit;
}
}
a {
color: inherit;
}
}
.brewTags span {