Skip to content

Commit

Permalink
Merge pull request #11 from NotBlue-Dev/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
NotBlue-Dev authored Jun 24, 2022
2 parents c231dfb + 86d5c3f commit 4097bdc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib
Submodule lib added at cb67de
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { app, BrowserWindow, ipcMain } = require('electron')

const echo = require('echomodlib')
const echo = require('./lib/index')

require('dotenv').config()
const dev = (process.env.NODE_ENV === 'development')
Expand Down
1 change: 1 addition & 0 deletions view/main/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ window.addEventListener('DOMContentLoaded', () => {
value: '',
type: 'input',
}).then((response) => {
console.log(response)
const body = document.querySelector('#body');
body && (body.style.cursor = 'progress');
ipcRenderer.send('find-ip', response);
Expand Down
3 changes: 2 additions & 1 deletion view/settings/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
</div>
</div>

<div id="container">
<div id="container" >
<!-- style="overflow-y: scroll !important" -->

</div>

Expand Down
1 change: 1 addition & 0 deletions view/settings/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ body {
background-color: #393E50;
color: white;
font-family: 'Montserrat', regular;
/* overflow-y: hidden; */
}

.tit {
Expand Down

0 comments on commit 4097bdc

Please sign in to comment.