diff --git a/app/javascripts/components/gather.js b/app/javascripts/components/gather.js index 3087708..841ffcc 100644 --- a/app/javascripts/components/gather.js +++ b/app/javascripts/components/gather.js @@ -1042,7 +1042,7 @@ const GatherVotingResults = React.createClass({ serverTable(server, primary) { let password = server.password ? server.password : "N/A"; - let className = primary ? "btn btn-primary max-width" : "btn btn-primary"; + let className = primary ? "btn btn-primary max-width" : "btn btn-primary pull-right"; let label = primary ? `Join ${server.name}` : "Join Fallback" return (
@@ -1075,15 +1075,18 @@ const GatherVotingResults = React.createClass({
+

Map Selection

Maps
{maps[0].name}
(Alternate: {maps[1].name})
+

Primary Server

{this.serverTable(mainServer, true)}
+

Fallback Server

{this.serverTable(altServer)}