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 {
|
||||
background-color: #2c2f33;
|
||||
}
|
||||
|
||||
.titlebar {
|
||||
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||||
background-color: #202225;
|
||||
--header-secondary: #b9bbbe;
|
||||
--header-primary: #fff;
|
||||
--background-tertiary: #202225;
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
15
preload.js
15
preload.js
|
@ -79,17 +79,16 @@ div.menubar[role="menubar"] {
|
|||
}
|
||||
`);
|
||||
|
||||
ArmCord.addStyle(
|
||||
`.info-1VyQPT:last-child:before {
|
||||
content: "ArmCord Version: ` +
|
||||
ArmCord.Version +
|
||||
`";
|
||||
|
||||
ArmCord.addStyle(`.info-1VyQPT:last-child:before {
|
||||
content: "ArmCord Version: ` + ArmCord.Version + `";
|
||||
height: auto;
|
||||
line-height: 16px;
|
||||
text-align: center;
|
||||
color: var(--text-muted);
|
||||
font-size: 12px;
|
||||
text-transform: none;
|
||||
}`
|
||||
);
|
||||
});
|
||||
|
||||
}`);
|
||||
})
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
exports.Version = "2.4";
|
||||
|
||||
exports.addStyle = function (styleString) {
|
||||
|
@ -11,3 +12,4 @@ exports.addScript = function (scriptString) {
|
|||
script.textContent = scriptString;
|
||||
document.body.append(script);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue