diff options
author | Vendicated <vendicated@riseup.net> | 2023-01-24 13:35:57 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-01-24 13:35:57 +0100 |
commit | 34276301c31dc1b464d79a07e25a347968e78313 (patch) | |
tree | 999dc21f26a0c9f922c3a24b4813edb7071e67ec /src/components/VencordSettings/Updater.tsx | |
parent | b2ecb02335fa51a7c7eadab0acb3beb91c289802 (diff) | |
download | Vencord-34276301c31dc1b464d79a07e25a347968e78313.tar.gz Vencord-34276301c31dc1b464d79a07e25a347968e78313.tar.bz2 Vencord-34276301c31dc1b464d79a07e25a347968e78313.zip |
Fix Settings UI (Discord removed default margins
Diffstat (limited to 'src/components/VencordSettings/Updater.tsx')
-rw-r--r-- | src/components/VencordSettings/Updater.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/VencordSettings/Updater.tsx b/src/components/VencordSettings/Updater.tsx index 8a126a8..b5243f2 100644 --- a/src/components/VencordSettings/Updater.tsx +++ b/src/components/VencordSettings/Updater.tsx @@ -199,7 +199,7 @@ function Updater() { }; return ( - <Forms.FormSection> + <Forms.FormSection className={Margins.marginTop16}> <Forms.FormTitle tag="h5">Updater Settings</Forms.FormTitle> <Switch value={settings.notifyAboutUpdates} @@ -225,7 +225,7 @@ function Updater() { </Link> )} (<HashLink hash={gitHash} repo={repo} disabled={repoPending} />)</Forms.FormText> - <Forms.FormDivider /> + <Forms.FormDivider className={Margins.marginTop8 + " " + Margins.marginBottom8} /> <Forms.FormTitle tag="h5">Updates</Forms.FormTitle> |