diff --git a/README.md b/README.md index 22173079..5abbf3b6 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch ### Extra included plugins
-163 additional plugins +162 additional plugins ### All Platforms - AllCallTimers by MaxHerbold & D3SOX @@ -27,7 +27,6 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch - BetterInvites by iamme - BetterPlusReacts by Joona - BetterQuickReact by Ven & Sqaaakoi -- BetterUserArea by Samwich - BlockKeywords by catcraft - BlockKrisp by D3SOX - BypassStatus by Inbestigator & thororen diff --git a/src/equicordplugins/betterUserArea/index.tsx b/src/equicordplugins/betterUserArea/index.tsx deleted file mode 100644 index 06c72bc5..00000000 --- a/src/equicordplugins/betterUserArea/index.tsx +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Vencord, a Discord client mod - * Copyright (c) 2024 Vendicated and contributors - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -import { disableStyle, enableStyle } from "@api/Styles"; -import { Devs } from "@utils/constants"; -import definePlugin from "@utils/types"; - -import style from "./style.css?managed"; - -export default definePlugin({ - name: "BetterUserArea", - description: "Reworks the user area styling to fit more buttons and overall look nicer", - authors: [Devs.Samwich], - patches: [{ - find: "#{intl::ACCOUNT_SPEAKING_WHILE_MUTED}", - replacement: - [ - // add a custom class to make things easier - { - match: /className:(\i.container),/, - replace: "className: `${$1} vc-userAreaStyles`," - }, - ] - }], - start() { - enableStyle(style); - }, - stop() { - disableStyle(style); - } -}); diff --git a/src/equicordplugins/betterUserArea/style.css b/src/equicordplugins/betterUserArea/style.css deleted file mode 100644 index 4a8ccdbb..00000000 --- a/src/equicordplugins/betterUserArea/style.css +++ /dev/null @@ -1,11 +0,0 @@ -/* stylelint-disable rule-empty-line-before */ -.vc-userAreaStyles -{ - display: grid; - height: 75px !important; - max-height: 9239080123px !important; - [class*="flex_"] - { - justify-content: space-between !important; - } -}