VoiceUserShow: Fix lack of bottom margin (#853)

Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
Luna
2023-04-10 15:10:21 -07:00
committed by GitHub
parent b21516d44e
commit 0a3dc5c6e8

View File

@ -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>
);
});