From 8be6c6e3ceed26c5a4524784339c66d49cb1b278 Mon Sep 17 00:00:00 2001 From: Amsyar Rasyiq <82711525+amsyarasyiq@users.noreply.github.com> Date: Wed, 19 Apr 2023 00:53:11 +0800 Subject: fix(ReviewDB): fix margin in self-profile preview (#935) Co-authored-by: V --- src/plugins/reviewDB/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/plugins/reviewDB/index.tsx') diff --git a/src/plugins/reviewDB/index.tsx b/src/plugins/reviewDB/index.tsx index 8e83983..01740a2 100644 --- a/src/plugins/reviewDB/index.tsx +++ b/src/plugins/reviewDB/index.tsx @@ -16,6 +16,8 @@ * along with this program. If not, see . */ +import "./style.css"; + import { Settings } from "@api/settings"; import ErrorBoundary from "@components/ErrorBoundary"; import { Devs } from "@utils/constants"; @@ -38,7 +40,7 @@ export default definePlugin({ replacement: { match: /\(.{0,10}\{user:(.),setNote:.,canDM:.,.+?\}\)/, replace: "$&,$self.getReviewsComponent($1)" - }, + } } ], -- cgit