diff options
author | V <vendicated@riseup.net> | 2023-05-13 22:56:31 +0200 |
---|---|---|
committer | V <vendicated@riseup.net> | 2023-05-13 22:56:46 +0200 |
commit | f2ef96a420ce5a05d5717f99e3a6a00b61230bd8 (patch) | |
tree | c2b3caf4a04860c145df2def9be3a6f40b53bb53 | |
parent | 16365d3ea1b5a0d72a430d7fbe19df1e27239e80 (diff) | |
download | Vencord-f2ef96a420ce5a05d5717f99e3a6a00b61230bd8.tar.gz Vencord-f2ef96a420ce5a05d5717f99e3a6a00b61230bd8.tar.bz2 Vencord-f2ef96a420ce5a05d5717f99e3a6a00b61230bd8.zip |
PlatformIndicators: Fix profile spacing
-rw-r--r-- | src/plugins/platformIndicators.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/platformIndicators.tsx b/src/plugins/platformIndicators.tsx index e20dd4d..13a3a65 100644 --- a/src/plugins/platformIndicators.tsx +++ b/src/plugins/platformIndicators.tsx @@ -114,8 +114,8 @@ const PlatformIndicator = ({ user, wantMargin = true }: { user: User; wantMargin verticalAlign: "top", position: "relative", top: wantMargin ? 1 : 0, - padding: !wantMargin ? 2 : 0, - gap: 4 + padding: !wantMargin ? 1 : 0, + gap: 2 }} > @@ -160,7 +160,7 @@ const indicatorLocations = { export default definePlugin({ name: "PlatformIndicators", description: "Adds platform indicators (Desktop, Mobile, Web...) to users", - authors: [Devs.kemo, Devs.TheSun, Devs.Nuckyz], + authors: [Devs.kemo, Devs.TheSun, Devs.Nuckyz, Devs.Ven], dependencies: ["MessageDecorationsAPI", "MemberListDecoratorsAPI"], start() { |