Skip to content

Commit

Permalink
Merge pull request #45 from olzzon/develop
Browse files Browse the repository at this point in the history
Added Reload button on "mini touch" view.
  • Loading branch information
olzzon authored May 1, 2019
2 parents 2e159cc + 1097875 commit 64613c1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions src/assets/css/App-text-view-header.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,22 @@
outline: 0;
}


.App-text-view-reload-button {
font-size: 0.9em;
width: 118px;
line-height: 35px;
margin-top: 5px;
background: rgb(46, 19, 19);
color: white;
font-family: 'Roboto Condensed', sans-serif;
border-radius: 5px;
border-width: 1px;
border-color: rgba(170, 170, 170, 0.315);
outline: 0;
}


/* Buttons for all thumbs, places at the bottom of the page */
.App-text-view-mix-button-background {
position: absolute;
Expand Down
8 changes: 4 additions & 4 deletions src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,6 @@ class App extends PureComponent {
>
{appNav[0].connectionStatus ? "VIEW" : "CONNECTING"}
</button>
<button className="App-control-view-settings-button"
onClick={this.handleSettingsPage}>
SETTINGS
</button>
<button className="App-control-view-reload-button"
onClick={this.reloadPage}>
RELOAD
Expand Down Expand Up @@ -552,6 +548,10 @@ class App extends PureComponent {
>
{appNav[0].connectionStatus ? "VIEW" : "CONNECTING"}
</button>
<button className="App-text-view-reload-button"
onClick={this.reloadPage}>
RELOAD
</button>
</div>

<div className="App-text-view-mix-button-background">
Expand Down

0 comments on commit 64613c1

Please sign in to comment.