diff options
Diffstat (limited to 'src/components/VencordSettings/Updater.tsx')
-rw-r--r-- | src/components/VencordSettings/Updater.tsx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/components/VencordSettings/Updater.tsx b/src/components/VencordSettings/Updater.tsx index b5243f2..caed4f7 100644 --- a/src/components/VencordSettings/Updater.tsx +++ b/src/components/VencordSettings/Updater.tsx @@ -22,9 +22,10 @@ import { ErrorCard } from "@components/ErrorCard"; import { Flex } from "@components/Flex"; import { handleComponentFailed } from "@components/handleComponentFailed"; import { Link } from "@components/Link"; +import { Margins } from "@utils/margins"; import { classes, useAwaiter } from "@utils/misc"; import { changes, checkForUpdates, getRepo, isNewer, rebuild, update, updateError, UpdateLogger } from "@utils/updater"; -import { Alerts, Button, Card, Forms, Margins, Parser, React, Switch, Toasts } from "@webpack/common"; +import { Alerts, Button, Card, Forms, Parser, React, Switch, Toasts } from "@webpack/common"; import gitHash from "~git-hash"; @@ -109,14 +110,14 @@ function Updatable(props: CommonProps) { </ErrorCard> </> ) : ( - <Forms.FormText className={Margins.marginBottom8}> + <Forms.FormText className={Margins.bottom8}> {isOutdated ? `There are ${updates.length} Updates` : "Up to Date!"} </Forms.FormText> )} {isOutdated && <Changes updates={updates} {...props} />} - <Flex className={classes(Margins.marginBottom8, Margins.marginTop8)}> + <Flex className={classes(Margins.bottom8, Margins.top8)}> {isOutdated && <Button size={Button.Sizes.SMALL} disabled={isUpdating || isChecking} @@ -175,7 +176,7 @@ function Updatable(props: CommonProps) { function Newer(props: CommonProps) { return ( <> - <Forms.FormText className={Margins.marginBottom8}> + <Forms.FormText className={Margins.bottom8}> Your local copy has more recent commits. Please stash or reset them. </Forms.FormText> <Changes {...props} updates={changes} /> @@ -199,7 +200,7 @@ function Updater() { }; return ( - <Forms.FormSection className={Margins.marginTop16}> + <Forms.FormSection className={Margins.top16}> <Forms.FormTitle tag="h5">Updater Settings</Forms.FormTitle> <Switch value={settings.notifyAboutUpdates} @@ -225,7 +226,7 @@ function Updater() { </Link> )} (<HashLink hash={gitHash} repo={repo} disabled={repoPending} />)</Forms.FormText> - <Forms.FormDivider className={Margins.marginTop8 + " " + Margins.marginBottom8} /> + <Forms.FormDivider className={Margins.top8 + " " + Margins.bottom8} /> <Forms.FormTitle tag="h5">Updates</Forms.FormTitle> |