Merge branch 'main' into canary

This commit is contained in:
smartfridge 2021-05-09 21:40:24 +02:00 committed by GitHub
commit 27919468cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 13 deletions

View File

@ -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 {

View File

@ -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;
}`
);
});
}`);
})

View File

@ -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);
};