PlatformIndicators: Fix profile spacing

This commit is contained in:
V 2023-05-13 22:56:31 +02:00
parent 16365d3ea1
commit f2ef96a420
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905

@ -114,8 +114,8 @@ const PlatformIndicator = ({ user, wantMargin = true }: { user: User; wantMargin
verticalAlign: "top", verticalAlign: "top",
position: "relative", position: "relative",
top: wantMargin ? 1 : 0, top: wantMargin ? 1 : 0,
padding: !wantMargin ? 2 : 0, padding: !wantMargin ? 1 : 0,
gap: 4 gap: 2
}} }}
> >
@ -160,7 +160,7 @@ const indicatorLocations = {
export default definePlugin({ export default definePlugin({
name: "PlatformIndicators", name: "PlatformIndicators",
description: "Adds platform indicators (Desktop, Mobile, Web...) to users", 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"], dependencies: ["MessageDecorationsAPI", "MemberListDecoratorsAPI"],
start() { start() {