From 2e5d27b6b63097e96e25819df7a8cdd667c521b3 Mon Sep 17 00:00:00 2001 From: Ven Date: Sun, 25 Dec 2022 20:47:35 +0100 Subject: feat: Proper CSS api & css bundle (#269) Co-authored-by: Vap0r1ze --- src/plugins/spotifyControls/PlayerComponent.tsx | 2 ++ src/plugins/spotifyControls/SpotifyStore.ts | 7 ------- 2 files changed, 2 insertions(+), 7 deletions(-) (limited to 'src/plugins/spotifyControls') diff --git a/src/plugins/spotifyControls/PlayerComponent.tsx b/src/plugins/spotifyControls/PlayerComponent.tsx index af53f59..f6ad08b 100644 --- a/src/plugins/spotifyControls/PlayerComponent.tsx +++ b/src/plugins/spotifyControls/PlayerComponent.tsx @@ -16,6 +16,8 @@ * along with this program. If not, see . */ +import "./spotifyStyles.css"; + import ErrorBoundary from "@components/ErrorBoundary"; import { Flex } from "@components/Flex"; import { Link } from "@components/Link"; diff --git a/src/plugins/spotifyControls/SpotifyStore.ts b/src/plugins/spotifyControls/SpotifyStore.ts index 75448dc..641ba1a 100644 --- a/src/plugins/spotifyControls/SpotifyStore.ts +++ b/src/plugins/spotifyControls/SpotifyStore.ts @@ -21,8 +21,6 @@ import { proxyLazy } from "@utils/proxyLazy"; import { findByPropsLazy } from "@webpack"; import { Flux, FluxDispatcher } from "@webpack/common"; -import cssText from "~fileContent/spotifyStyles.css"; - export interface Track { id: string; name: string; @@ -69,11 +67,6 @@ type Repeat = "off" | "track" | "context"; // Don't wanna run before Flux and Dispatcher are ready! export const SpotifyStore = proxyLazy(() => { - // TODO: Move this elsewhere - const style = document.createElement("style"); - style.innerText = cssText; - document.head.appendChild(style); - // For some reason ts hates extends Flux.Store const { Store } = Flux; -- cgit