diff options
author | nmsturcke <30734036+nmsturcke@users.noreply.github.com> | 2022-11-21 16:27:55 +0100 |
---|---|---|
committer | nmsturcke <30734036+nmsturcke@users.noreply.github.com> | 2022-11-21 16:27:55 +0100 |
commit | c67cb0261137a606314bbd7e1e501b29a3abfb20 (patch) | |
tree | 5b7fc49ae3fb7aff43e1f55850b2483a4a07464a /src/components/PluginSettings/styles.ts | |
parent | ba45ecda56d0f5bc19954f56bdb64b9fd11db0ee (diff) | |
download | Vencord-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.ts | 20 |
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", +}; |