0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-03 14:52:38 +00:00

Add a page count to User page

This commit is contained in:
G.Ambatte
2021-07-31 17:21:25 +12:00
parent 1885a8d0cc
commit a908c5f5d5
4 changed files with 12 additions and 5 deletions

View File

@@ -107,6 +107,7 @@ const BrewItem = createClass({
<h2>{brew.title}</h2>
<p className='description'>{brew.description}</p>
<hr />
<div className='spacer'></div>
<div className='info'>
<span title={`Authors:\n${brew.authors.join('\n')}`}>

View File

@@ -69,4 +69,7 @@
padding : 0px;
margin : -5px;
}
.spacer {
height : 25px;
}
}