diff options
Diffstat (limited to 'src/components/Settings.tsx')
-rw-r--r-- | src/components/Settings.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index 6c5b501..2a2cc5d 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -72,7 +72,7 @@ export default ErrorBoundary.wrap(function Settings() { SettingsDir: <code style={{ userSelect: "text", cursor: "text" }}>{settingsDir}</code> </Forms.FormText> - {!IS_WEB && <Flex className={classes(Margins.marginBottom20)}> + {!IS_WEB && <Flex className={Margins.marginBottom20}> <Button onClick={() => window.DiscordNative.app.relaunch()} size={Button.Sizes.SMALL} @@ -95,8 +95,8 @@ export default ErrorBoundary.wrap(function Settings() { Open QuickCSS File </Button> </Flex>} + <Forms.FormDivider /> - <Forms.FormTitle tag="h5">Settings</Forms.FormTitle> <Switch value={settings.useQuickCss} onChange={(v: boolean) => settings.useQuickCss = v} |