mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Merge branch 'main' into canary
This commit is contained in:
commit
27919468cd
3 changed files with 12 additions and 13 deletions
|
@ -10,11 +10,9 @@
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
background-color: #2c2f33;
|
background-color: #2c2f33;
|
||||||
}
|
--header-secondary: #b9bbbe;
|
||||||
|
--header-primary: #fff;
|
||||||
.titlebar {
|
--background-tertiary: #202225;
|
||||||
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
||||||
background-color: #202225;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
15
preload.js
15
preload.js
|
@ -79,17 +79,16 @@ div.menubar[role="menubar"] {
|
||||||
}
|
}
|
||||||
`);
|
`);
|
||||||
|
|
||||||
ArmCord.addStyle(
|
|
||||||
`.info-1VyQPT:last-child:before {
|
ArmCord.addStyle(`.info-1VyQPT:last-child:before {
|
||||||
content: "ArmCord Version: ` +
|
content: "ArmCord Version: ` + ArmCord.Version + `";
|
||||||
ArmCord.Version +
|
|
||||||
`";
|
|
||||||
height: auto;
|
height: auto;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}`
|
|
||||||
);
|
}`);
|
||||||
});
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
exports.Version = "2.4";
|
exports.Version = "2.4";
|
||||||
|
|
||||||
exports.addStyle = function (styleString) {
|
exports.addStyle = function (styleString) {
|
||||||
|
@ -11,3 +12,4 @@ exports.addScript = function (scriptString) {
|
||||||
script.textContent = scriptString;
|
script.textContent = scriptString;
|
||||||
document.body.append(script);
|
document.body.append(script);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue