Smarten up previous gather

This commit is contained in:
Chris Blanchard 2015-09-15 00:10:06 +01:00
parent 3613df3475
commit b6a7190b51
2 changed files with 9 additions and 8 deletions

View file

@ -737,10 +737,10 @@ var Gatherers = React.createClass({
var CompletedGather = React.createClass({ var CompletedGather = React.createClass({
render() { render() {
return ( return (
<div> <div id="previous_gather">
<h4 className="headline previous-headline"> <div className="panel panel-default add-bottom">
<strong>Previous Gather</strong> <div className="panel-heading">Previous Gather</div>
</h4> </div>
<GatherTeams gather={this.props.gather} /> <GatherTeams gather={this.props.gather} />
<GatherVotingResults gather={this.props.gather} maps={this.props.maps} servers={this.props.servers}/> <GatherVotingResults gather={this.props.gather} maps={this.props.maps} servers={this.props.servers}/>
</div> </div>

View file

@ -85,10 +85,6 @@ html, body {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
.previous-headline {
margin-top: 2em;
};
.jumbo-auth { .jumbo-auth {
margin-top: 30px; margin-top: 30px;
} }
@ -116,3 +112,8 @@ html, body {
#gatherers-panel > .panel { #gatherers-panel > .panel {
margin-bottom: 1px; margin-bottom: 1px;
} }
#previous_gather {
margin-top: 2em;
border-top: 1px solid #FAFAFA;
}