diff options
author | Nickyux <30734036+nmsturcke@users.noreply.github.com> | 2022-11-21 19:54:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-21 19:54:48 +0100 |
commit | 0f7c80fd4d5a549212acd59234faba0c69c1f897 (patch) | |
tree | 4d07d11cbbdcf527261de094053dc616d3e1139e | |
parent | b5bc88c7d441f8d24df70419d7e8e77eaa7f284e (diff) | |
download | Vencord-0f7c80fd4d5a549212acd59234faba0c69c1f897.tar.gz Vencord-0f7c80fd4d5a549212acd59234faba0c69c1f897.tar.bz2 Vencord-0f7c80fd4d5a549212acd59234faba0c69c1f897.zip |
Fix no gap (#242)
-rw-r--r-- | src/plugins/platformIndicators.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platformIndicators.tsx b/src/plugins/platformIndicators.tsx index 2b44973..9a9a1ab 100644 --- a/src/plugins/platformIndicators.tsx +++ b/src/plugins/platformIndicators.tsx @@ -81,7 +81,7 @@ const PlatformIndicator = ({ user }: { user: User; }) => { <div className="vc-platform-indicator" style={{ - display: "flex", alignItems: "center", marginLeft: "4px" + display: "flex", alignItems: "center", marginLeft: "4px", gap: "4px" }} > {icons} |