fix spacing issue

This commit is contained in:
Jeremy Kauffman 2016-08-08 00:53:38 -04:00 committed by Alex Liebowitz
parent 2867560fed
commit e1bbb7dbdf

View file

@ -50,16 +50,15 @@ var SearchResults = React.createClass({
var var
searchRowStyle = { searchRowStyle = {
height: '160px', height: (24 * 7) + 'px',
overflowY: 'hidden' overflowY: 'hidden'
}, },
searchRowImgStyle = { searchRowImgStyle = {
maxWidth: '100%', maxWidth: '100%',
maxHeight: '16 0px', maxHeight: (24 * 7) + 'px',
display: 'block', display: 'block',
marginLeft: 'auto', marginLeft: 'auto',
marginRight: 'auto', marginRight: 'auto'
float: 'left'
}, },
searchRowTitleStyle = { searchRowTitleStyle = {
fontWeight: 'bold' fontWeight: 'bold'
@ -69,7 +68,6 @@ var
}, },
searchRowDescriptionStyle = { searchRowDescriptionStyle = {
color : '#444', color : '#444',
marginBottom: '24px',
marginTop: '12px', marginTop: '12px',
fontSize: '0.9em' fontSize: '0.9em'
}; };