aboutsummaryrefslogtreecommitdiff
path: root/src/components/PluginSettings/styles.ts
diff options
context:
space:
mode:
authornmsturcke <30734036+nmsturcke@users.noreply.github.com>2022-11-21 16:27:55 +0100
committernmsturcke <30734036+nmsturcke@users.noreply.github.com>2022-11-21 16:27:55 +0100
commitc67cb0261137a606314bbd7e1e501b29a3abfb20 (patch)
tree5b7fc49ae3fb7aff43e1f55850b2483a4a07464a /src/components/PluginSettings/styles.ts
parentba45ecda56d0f5bc19954f56bdb64b9fd11db0ee (diff)
downloadVencord-c67cb0261137a606314bbd7e1e501b29a3abfb20.tar.gz
Vencord-c67cb0261137a606314bbd7e1e501b29a3abfb20.tar.bz2
Vencord-c67cb0261137a606314bbd7e1e501b29a3abfb20.zip
Working?
Diffstat (limited to 'src/components/PluginSettings/styles.ts')
-rw-r--r--src/components/PluginSettings/styles.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/PluginSettings/styles.ts b/src/components/PluginSettings/styles.ts
index 703c579..81243ca 100644
--- a/src/components/PluginSettings/styles.ts
+++ b/src/components/PluginSettings/styles.ts
@@ -48,3 +48,23 @@ export const SettingsIcon: React.CSSProperties = {
background: "transparent",
marginRight: 8
};
+
+export const Badge: React.CSSProperties = {
+ paddingTop: "0",
+ paddingBottom: "0",
+ paddingRight: "6px",
+ paddingLeft: "6px",
+ fontFamily: "var(--font-display)",
+ fontWeight: "500px",
+ textTransform: "uppercase",
+ whiteSpace: "nowrap",
+ textOverflow: "ellipsis",
+ overflow: "hidden",
+ borderRadius: "8px",
+ height: "16px",
+ minWidth: "16px",
+ minHeight: "16px",
+ fontSize: "12px",
+ lineHeight: "16px",
+ color: "white",
+};