diff options
Diffstat (limited to 'src/plugins/showHiddenChannels/components')
-rw-r--r-- | src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx b/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx index 9050037..291a767 100644 --- a/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx +++ b/src/plugins/showHiddenChannels/components/HiddenChannelLockScreen.tsx @@ -84,6 +84,7 @@ export function setChannelBeginHeaderComponent(component: ComponentType<any>) { } const ChatScrollClasses = findByPropsLazy("auto", "content", "scrollerBase"); +const ChatClasses = findByPropsLazy("chat", "content", "noChat", "chatContent"); const TagComponent = LazyComponent(() => find(m => { if (typeof m !== "function") return false; @@ -159,7 +160,7 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) { } return ( - <div className={ChatScrollClasses.auto + " " + "shc-lock-screen-outer-container"}> + <div className={ChatScrollClasses.auto + " " + ChatScrollClasses.customTheme + " " + ChatClasses.chatContent + " " + "shc-lock-screen-outer-container"}> <div className="shc-lock-screen-container"> <img className="shc-lock-screen-logo" src={HiddenChannelLogo} /> |