mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-13 00:24:28 +00:00
Fix minor style issues on gather widgets
This commit is contained in:
parent
81e6daf614
commit
42bbb80648
1 changed files with 2 additions and 2 deletions
|
@ -662,7 +662,7 @@ var Gatherers = React.createClass({
|
||||||
}, 0)
|
}, 0)
|
||||||
action = (
|
action = (
|
||||||
<span>
|
<span>
|
||||||
<small>{votes + " votes"} </small>
|
<span className="badge add-right">{votes + " votes"}</span>
|
||||||
<VoteButton currentGatherer={self.props.currentGatherer} candidate={gatherer} />
|
<VoteButton currentGatherer={self.props.currentGatherer} candidate={gatherer} />
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
@ -712,7 +712,7 @@ var Gatherers = React.createClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="panel panel-success gatherer-panel" key={gatherer.user.id} data-userid={gatherer.user.id}>
|
<div className="panel panel-info gatherer-panel" key={gatherer.user.id} data-userid={gatherer.user.id}>
|
||||||
<div className="panel-heading">
|
<div className="panel-heading">
|
||||||
<h4 className="panel-title">
|
<h4 className="panel-title">
|
||||||
{country} {gatherer.user.username}
|
{country} {gatherer.user.username}
|
||||||
|
|
Loading…
Reference in a new issue