diff --git a/lib/react/gather.jsx b/lib/react/gather.jsx index 080dc14..c1ab737 100644 --- a/lib/react/gather.jsx +++ b/lib/react/gather.jsx @@ -12,18 +12,18 @@ var SelectPlayerButton = React.createClass({ let button; if (this.props.gatherer.leader) { button = ; } else if (this.props.gatherer.team !== "lobby") { button = ; } else { button = ; } return button; @@ -717,9 +717,11 @@ var Gatherers = React.createClass({ ); } else { if (gatherer.leader) { - action = (Leader); + action = (Leader); } else if (gatherer.team !== "lobby") { - action = ({_.capitalize(gatherer.team)}); + action = ({_.capitalize(gatherer.team)}); + } else { + action = (Lobby); } } } diff --git a/public/css/app.css b/public/css/app.css index 3d7b96b..a1f3010 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -49,6 +49,16 @@ html, body { /*Gather Styles*/ +.vote-button { + min-width: 60px; +} + +.team-label { + min-width: 70px; + display: inline-block; + padding: 5px; +} + .lifeform-icon { width: 20px; margin: 0 3px; @@ -127,7 +137,3 @@ html, body { .panel-light-background { background-color: #d9edf7; } - -.vote-button { - min-width: 60px; -} \ No newline at end of file