diff options
author | Luna <luni.siaa@gmail.com> | 2023-04-10 15:10:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-10 22:10:21 +0000 |
commit | 0a3dc5c6e80c0981cfffb7019bc877ce734b8574 (patch) | |
tree | e2967fad5a91148fc55bdfc030bcd59234981d31 /src | |
parent | b21516d44e37d14a84f471ca3116f86d518c2e2d (diff) | |
download | Vencord-0a3dc5c6e80c0981cfffb7019bc877ce734b8574.tar.gz Vencord-0a3dc5c6e80c0981cfffb7019bc877ce734b8574.tar.bz2 Vencord-0a3dc5c6e80c0981cfffb7019bc877ce734b8574.zip |
VoiceUserShow: Fix lack of bottom margin (#853)
Co-authored-by: V <vendicated@riseup.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/userVoiceShow/index.tsx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/plugins/userVoiceShow/index.tsx b/src/plugins/userVoiceShow/index.tsx index d0252c1..3a1f6fe 100644 --- a/src/plugins/userVoiceShow/index.tsx +++ b/src/plugins/userVoiceShow/index.tsx @@ -57,11 +57,13 @@ const VoiceChannelField = ErrorBoundary.wrap(({ user }: UserProps) => { const result = `${guild.name} | ${channel.name}`; return ( - <VoiceChannelSection - channel={channel} - label={result} - showHeader={settings.store.showVoiceChannelSectionHeader} - /> + <div style={{ marginBottom: 14 }}> + <VoiceChannelSection + channel={channel} + label={result} + showHeader={settings.store.showVoiceChannelSectionHeader} + /> + </div> ); }); |