Skip to content

Commit

Permalink
Merge pull request PortalNetwork#55 from ahlumin/develop
Browse files Browse the repository at this point in the history
fix background cover button bug
  • Loading branch information
ahlumin authored Jul 25, 2018
2 parents e357a04 + 0d3a5a1 commit 4dde6bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions dapp/src/components/Arena/Arena.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
background-image: url("../../images/Elf3.png");
animation: ElfMove 2s infinite linear; }
.arena .ui.bg_footer {
position: fixed;
bottom: 0;
width: 100%;
height: 159px;
Expand Down
1 change: 1 addition & 0 deletions dapp/src/components/Arena/Arena.scss
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
}

&.bg_footer {
position: fixed;
bottom: 0;
width: 100%;
height: 159px;
Expand Down
4 changes: 2 additions & 2 deletions dapp/src/components/Arena/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ export default class extends React.Component {
<span className={cx('bet_eth_field')}>
<input type="number" name="betEth" value={betEth} max="1" step="0.01" min="0.01" onChange={this.handleBetETHChange} />
</span>
<a onClick={this.handlePlaceBet}>
<a onClick={this.handlePlaceBet} style={{position: 'relative'}}>
<img className={cx('place_bet_button')} src={playgameImg} />
</a>
</div>
Expand All @@ -329,7 +329,7 @@ export default class extends React.Component {

<div className={cx('right')}>
<div className={cx('right-item')}>
<a onClick={this.handleShowHistory}>
<a onClick={this.handleShowHistory} style={{position: 'relative'}}>
<img className={cx('history-button')} src={historyImg} />
</a>
</div>
Expand Down

0 comments on commit 4dde6bb

Please sign in to comment.