diff options
Diffstat (limited to 'src/components/VencordSettings')
-rw-r--r-- | src/components/VencordSettings/index.tsx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/components/VencordSettings/index.tsx b/src/components/VencordSettings/index.tsx index b49e4b4..b3a3322 100644 --- a/src/components/VencordSettings/index.tsx +++ b/src/components/VencordSettings/index.tsx @@ -16,22 +16,18 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ +import "./settingsStyles.css"; + import ErrorBoundary from "@components/ErrorBoundary"; import { findByCodeLazy } from "@webpack"; import { Forms, Router, Text } from "@webpack/common"; -import cssText from "~fileContent/settingsStyles.css"; - import BackupRestoreTab from "./BackupRestoreTab"; import PluginsTab from "./PluginsTab"; import ThemesTab from "./ThemesTab"; import Updater from "./Updater"; import VencordSettings from "./VencordTab"; -const style = document.createElement("style"); -style.textContent = cssText; -document.head.appendChild(style); - const st = (style: string) => `vcSettings${style}`; const TabBar = findByCodeLazy('[role="tab"][aria-disabled="false"]'); |