aboutsummaryrefslogtreecommitdiff
path: root/src/components/PluginSettings/styles.ts
diff options
context:
space:
mode:
authorNickyux <30734036+nmsturcke@users.noreply.github.com>2022-12-23 03:17:19 +0100
committerGitHub <noreply@github.com>2022-12-23 03:17:19 +0100
commitaff1b68d6b480ecf25d03ee11ee7ca2fb04d945c (patch)
tree43ae0b57acdd88a6ec64f5441e3bf3061d947c5c /src/components/PluginSettings/styles.ts
parent074542f0b36cd61e3d2a1aefc7c716d394e1f751 (diff)
downloadVencord-aff1b68d6b480ecf25d03ee11ee7ca2fb04d945c.tar.gz
Vencord-aff1b68d6b480ecf25d03ee11ee7ca2fb04d945c.tar.bz2
Vencord-aff1b68d6b480ecf25d03ee11ee7ca2fb04d945c.zip
Add a "NEW" Badge for New Plugins (V2)! (#234)
Co-authored-by: Ven <vendicated@riseup.net> Co-authored-by: Justice Almanzar <superdash993@gmail.com> Co-authored-by: ArjixWasTaken <53124886+ArjixWasTaken@users.noreply.github.com>
Diffstat (limited to 'src/components/PluginSettings/styles.ts')
-rw-r--r--src/components/PluginSettings/styles.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/components/PluginSettings/styles.ts b/src/components/PluginSettings/styles.ts
index 703c579..5621b76 100644
--- a/src/components/PluginSettings/styles.ts
+++ b/src/components/PluginSettings/styles.ts
@@ -29,7 +29,7 @@ export const PluginsGridItem: React.CSSProperties = {
borderRadius: 3,
cursor: "pointer",
display: "block",
- height: "min-content",
+ height: "100%",
padding: 10,
width: "100%",
};
@@ -48,3 +48,14 @@ export const SettingsIcon: React.CSSProperties = {
background: "transparent",
marginRight: 8
};
+
+export const BadgeStyle: React.CSSProperties = {
+ padding: "0 6px",
+ fontFamily: "var(--font-display)",
+ fontWeight: "500",
+ borderRadius: "8px",
+ height: "16px",
+ fontSize: "12px",
+ lineHeight: "16px",
+ color: "var(--white-500)",
+};