euchre-live

Euchre web-app for the socially distant family
git clone git://git.alexkarle.com/euchre-live.git
Log | Files | Refs | README | LICENSE

commit 43be293109cea207a419c62a4e6156d5584c2c00 (patch)
parent e190a2a9802ddcf0b23ffe9880e33426de3d14e2
Author: Chris Karle <chriskarle@hotmail.com>
Date:   Fri, 29 May 2020 02:15:58 -0400

Lobby, app.scss

Lobby: removed some commented code
CSS: tweak margin-top on Lobby

Diffstat:
Massets/app.scss | 2+-
Massets/components/Lobby.js | 24------------------------
2 files changed, 1 insertion(+), 25 deletions(-)

diff --git a/assets/app.scss b/assets/app.scss @@ -1,7 +1,7 @@ @import 'carbon-components/scss/globals/scss/styles.scss'; .lobby__outer { - margin-top: 3rem; + margin-top: 2rem; margin-left: 3rem; } .unique__error { diff --git a/assets/components/Lobby.js b/assets/components/Lobby.js @@ -98,30 +98,6 @@ export default class Lobby extends React.Component { refresh={this.props.refreshTables} /> </div> - {/* <br/><br/> - <p>...or type a table name (deprecated, soon to be removed)</p> - <div className="textRow"> - <TextInput - id="lobby__table" - className="lobby__table__input" - size="xl" - labelText="" - placeholder="Table choice?" - invalidText="Sorry, letters A-Z a-z and spaces only" - invalid={tableError} - onChange={this.handleTableIn} - ref={(input) => {this.tableText = input;}} - /> - <Button - className="table__button" - hasIconOnly - onClick={()=>this.props.joinTable({table: tableIn, player_name: name})} - renderIcon={Login32} - iconDescription="go!" - tooltipPosition="bottom" - disabled={tableError || !name || name==''} - /> - </div> */} </div> )}