fix spacing issue
This commit is contained in:
parent
2867560fed
commit
e1bbb7dbdf
1 changed files with 3 additions and 5 deletions
|
@ -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'
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue