mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Theme Manager Stuff
This commit is contained in:
parent
f7a1d23f70
commit
e7ae65bfbb
3 changed files with 13 additions and 4 deletions
2
main.js
2
main.js
|
@ -90,7 +90,7 @@ function createWindow() {
|
|||
try {
|
||||
appIcon();
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
//console.error(error);
|
||||
// expected output: TypeError: appIcon is not a function
|
||||
}
|
||||
});
|
||||
|
|
13
manager.css
13
manager.css
|
@ -36,7 +36,11 @@ span {
|
|||
font-size: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.disabled {
|
||||
text-align: center;
|
||||
font-weight: normal;
|
||||
font-family: Helvetica, sans-serif;
|
||||
}
|
||||
.container {
|
||||
position: fixed;
|
||||
top: 50%;
|
||||
|
@ -107,7 +111,12 @@ button#open-themes-btn:active {
|
|||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
#tm-disabled {
|
||||
position: absolute;
|
||||
top: 100px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
#tm-list-item {
|
||||
background: #23272a;
|
||||
font-family: Whitney, Helvetica Neue, Helvetica, Arial, sans-serif;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<button id="open-themes-btn">Themes Folder</button>
|
||||
<p class="logo">Cord Manager</p>
|
||||
<div id="tm-list"></div>
|
||||
<p>Disabled Themes:</p>
|
||||
<p class="disabled">Disabled Themes:</p>
|
||||
<div id="tm-disabled"></div>
|
||||
<p id="ac-channel"></p>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue