diff options
| author | megumin <megumin.bakaretsurie@gmail.com> | 2022-11-25 22:38:55 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-25 22:38:55 +0000 |
| commit | 6b55dee9fbba1a54cbe2ba1f2067e2d14190ab93 (patch) | |
| tree | 4245702e4ae95647d344ba3b22893bdd0e3b1bb6 /src/components/PluginSettings | |
| parent | a85ec594a77557e5f48c4cf1aa33680e0da94654 (diff) | |
| download | Vencord-6b55dee9fbba1a54cbe2ba1f2067e2d14190ab93.tar.gz Vencord-6b55dee9fbba1a54cbe2ba1f2067e2d14190ab93.tar.bz2 Vencord-6b55dee9fbba1a54cbe2ba1f2067e2d14190ab93.zip | |
feat(settings): new settings design (#261)
Diffstat (limited to 'src/components/PluginSettings')
| -rw-r--r-- | src/components/PluginSettings/index.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index 39fb911..f16d55c 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -243,9 +243,9 @@ export default ErrorBoundary.wrap(function Settings() { }; return ( - <Forms.FormSection tag="h1" title="Vencord"> + <Forms.FormSection> <Forms.FormTitle tag="h5" className={classes(Margins.marginTop20, Margins.marginBottom8)}> - Plugins + Filters </Forms.FormTitle> <ReloadRequiredCard plugins={[...changes.getChanges()]} style={{ marginBottom: 16 }} /> @@ -268,6 +268,8 @@ export default ErrorBoundary.wrap(function Settings() { </div> </div> + <Forms.FormTitle className={Margins.marginTop20}>Plugins</Forms.FormTitle> + <div style={styles.PluginsGrid}> {sortedPlugins?.length ? sortedPlugins .filter(a => !a.required && !dependencyCheck(a.name, depMap).length && pluginFilter(a)) |
