Removed cursor hover pointer for simplicity, added set account via ENV
This commit is contained in:
parent
334ff3018c
commit
7b4eac06df
2 changed files with 4 additions and 9 deletions
|
|
@ -5,6 +5,8 @@ const store = require("./utils/store");
|
|||
const { launchSession, endSession } = require("./session");
|
||||
const { backgroundMitt, ipcEmit } = require("./utils/emitter");
|
||||
|
||||
store.set("account", process.env.ACCOUNT);
|
||||
|
||||
async function auth(_e, creds)
|
||||
{
|
||||
const { error, data } = await post("/auth", creds);
|
||||
|
|
|
|||
|
|
@ -230,7 +230,6 @@ html, body {
|
|||
border-radius: 50%;
|
||||
/* Set opacity here to not affect child. */
|
||||
background-color: rgba(235, 235, 235, 0.75);
|
||||
cursor: pointer;
|
||||
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
|
||||
}
|
||||
|
||||
|
|
@ -297,10 +296,8 @@ html, body {
|
|||
margin-top: 19px;
|
||||
z-index: 2;
|
||||
background-color: Transparent;
|
||||
}
|
||||
|
||||
.settings-icon:hover {
|
||||
cursor: pointer;
|
||||
/* Needed for Linux */
|
||||
-webkit-app-region: no-drag;
|
||||
}
|
||||
|
||||
.settings-account {
|
||||
|
|
@ -317,10 +314,6 @@ html, body {
|
|||
font-size: 14px;
|
||||
}
|
||||
|
||||
.settings-logout-button:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.settings-version {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
|
|
|
|||
Loading…
Reference in a new issue