diff options
author | Swishilicous <paige.git@gmail.com> | 2023-01-13 17:25:24 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-14 00:25:24 +0100 |
commit | 0e5b8b07c99f3ab54c576a58ac3f59721d4f9904 (patch) | |
tree | 360f1a12a116f899c55cf4338f301e28353794a9 /src/components/PluginSettings/index.tsx | |
parent | 7582feb60352f19b7f8f6750c5be624bbf6baafa (diff) | |
download | Vencord-0e5b8b07c99f3ab54c576a58ac3f59721d4f9904.tar.gz Vencord-0e5b8b07c99f3ab54c576a58ac3f59721d4f9904.tar.bz2 Vencord-0e5b8b07c99f3ab54c576a58ac3f59721d4f9904.zip |
make plugin cards prettier (#389)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/components/PluginSettings/index.tsx')
-rw-r--r-- | src/components/PluginSettings/index.tsx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/components/PluginSettings/index.tsx b/src/components/PluginSettings/index.tsx index 687b9ee..3b283d0 100644 --- a/src/components/PluginSettings/index.tsx +++ b/src/components/PluginSettings/index.tsx @@ -152,14 +152,11 @@ function PluginCard({ plugin, disabled, onRestartNeeded, onMouseEnter, onMouseLe onChange={toggleEnabled} disabled={disabled} value={isEnabled()} - note={<Text className={cl("note")} variant="text-md/normal">{plugin.description}</Text>} + note={<Text className={cl("note")} variant="text-sm/normal">{plugin.description}</Text>} hideBorder={true} > <Flex className={cl("flex")}> - <Text - variant="text-md/bold" - className={cl("name")} - > + <Text variant="text-md/bold" className={cl("name")}> {plugin.name}{isNew && <Badge text="NEW" color="#ED4245" />} </Text> <button role="switch" onClick={() => openModal()} className={classes("button-12Fmur", cl("info-button"))}> |