List styling

This commit is contained in:
2019-06-03 11:42:33 +10:00
parent 96d482317c
commit f456113467
8 changed files with 143 additions and 77 deletions
+3 -3
View File
@@ -74,11 +74,11 @@ class CombatLog extends React.Component {
buttonHeader() {
return (
<div className='table'>
<div className='table noCollapse'>
<div className='row'>
<button className='col' onClick={ this.decrement.bind(this) }>{'< Back'}</button>
<div className='col' />
<div className='col' />
<div className='col hide mobile' />
<div className='col hide mobile' />
<button className='col' onClick={ this.increment.bind(this) }>{'Next >'}</button>
</div>
</div>
+4 -3
View File
@@ -37,6 +37,7 @@ class Ladder extends React.Component {
<div className='mainPanel'>
<h1 className='centered'>Game Ladder</h1>
<ButtonHeader />
<br />
<PagedLadder
start={this.state.start}
length={this.state.length}
@@ -52,11 +53,11 @@ class Ladder extends React.Component {
buttonHeader() {
return (
<div className='table'>
<div className='table noCollapse'>
<div className='row'>
<button className='col' onClick={this.decrement.bind(this)}>{'< Back'}</button>
<div className='col' />
<div className='col' />
<div className='col hide mobile' />
<div className='col hide mobile' />
<button className='col' onClick={this.increment.bind(this)}>{'Next >'}</button>
</div>
</div>