diff options
Diffstat (limited to 'src/components/VencordSettings/BackupRestoreTab.tsx')
-rw-r--r-- | src/components/VencordSettings/BackupRestoreTab.tsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/components/VencordSettings/BackupRestoreTab.tsx b/src/components/VencordSettings/BackupRestoreTab.tsx index 2ea0452..7a3729d 100644 --- a/src/components/VencordSettings/BackupRestoreTab.tsx +++ b/src/components/VencordSettings/BackupRestoreTab.tsx @@ -18,25 +18,26 @@ import ErrorBoundary from "@components/ErrorBoundary"; import { Flex } from "@components/Flex"; +import { Margins } from "@utils/margins"; import { classes } from "@utils/misc"; import { downloadSettingsBackup, uploadSettingsBackup } from "@utils/settingsSync"; -import { Button, Card, Forms, Margins, Text } from "@webpack/common"; +import { Button, Card, Forms, Text } from "@webpack/common"; function BackupRestoreTab() { return ( - <Forms.FormSection title="Settings Sync" className={Margins.marginTop16}> + <Forms.FormSection title="Settings Sync" className={Margins.top16}> <Card className={classes("vc-settings-card", "vc-backup-restore-card")}> <Flex flexDirection="column"> <strong>Warning</strong> <span>Importing a settings file will overwrite your current settings.</span> </Flex> </Card> - <Text variant="text-md/normal" className={Margins.marginBottom8}> + <Text variant="text-md/normal" className={Margins.bottom8}> You can import and export your Vencord settings as a JSON file. This allows you to easily transfer your settings to another device, or recover your settings after reinstalling Vencord or Discord. </Text> - <Text variant="text-md/normal" className={Margins.marginBottom8}> + <Text variant="text-md/normal" className={Margins.bottom8}> Settings Export contains: <ul> <li>— Custom QuickCSS</li> |