Add spacing between buttons on Search page and between search results
This commit is contained in:
parent
007a5e55d1
commit
f4d2ed2af1
1 changed files with 3 additions and 2 deletions
|
@ -94,7 +94,7 @@ var SearchResultRow = React.createClass({
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
return (
|
return (
|
||||||
<div className="row-fluid">
|
<section className="row-fluid">
|
||||||
<div className="span3">
|
<div className="span3">
|
||||||
<img src={this.props.imgUrl} alt={'Photo for ' + (this.props.title || this.props.name)} style={searchRowImgStyle} />
|
<img src={this.props.imgUrl} alt={'Photo for ' + (this.props.title || this.props.name)} style={searchRowImgStyle} />
|
||||||
</div>
|
</div>
|
||||||
|
@ -107,10 +107,11 @@ var SearchResultRow = React.createClass({
|
||||||
<p style={searchRowDescriptionStyle}>{this.props.description}</p>
|
<p style={searchRowDescriptionStyle}>{this.props.description}</p>
|
||||||
<div>
|
<div>
|
||||||
<WatchLink streamName={this.props.name} button="primary" />
|
<WatchLink streamName={this.props.name} button="primary" />
|
||||||
|
{ ' ' }
|
||||||
<DownloadLink streamName={this.props.name} button="alt" />
|
<DownloadLink streamName={this.props.name} button="alt" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue