0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-18 10:02:49 +00:00

Fixed the User page

This commit is contained in:
Scott Tolksdorf
2016-11-27 13:45:38 -05:00
parent 21d3c5bfc8
commit 30942785d1
6 changed files with 48 additions and 9 deletions

View File

@@ -17,9 +17,9 @@ const BrewItem = React.createClass({
render : function(){
const brew = this.props.brew;
return <div className='brewItem'>
return <div className='brewItem'title={brew.description}>
<h4>{brew.title}</h4>
<p className='description'><em>{brew.description}</em></p>
<p className='description' ><em>{brew.description}</em></p>
<hr />
<ul>
<li><strong>Authors: </strong> {brew.authors.join(', ')}</li>

View File

@@ -2,7 +2,7 @@
.brewItem{
display : inline-block;
vertical-align : top;
width : 33%;
width : 25%;
margin-bottom : 15px;
-webkit-column-break-inside : avoid;
page-break-inside : avoid;