From 30a6419b11b999c6ab0dc4613f8eb075039441d1 Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Thu, 6 Jun 2024 08:18:19 +0700 Subject: [PATCH] MISC: Use camel case for CSS properties (#1353) --- src/ui/GameRoot.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/GameRoot.tsx b/src/ui/GameRoot.tsx index 0ecb80787..1bb400fa2 100644 --- a/src/ui/GameRoot.tsx +++ b/src/ui/GameRoot.tsx @@ -77,8 +77,8 @@ const htmlLocation = location; const useStyles = makeStyles()((theme: Theme) => ({ root: { - "-ms-overflow-style": "none" /* for Internet Explorer, Edge */, - "scrollbar-width": "none" /* for Firefox */, + msOverflowStyle: "none" /* for Internet Explorer, Edge */, + scrollbarWidth: "none" /* for Firefox */, margin: theme.spacing(0), flexGrow: 1, padding: "8px",