VoiceUserShow: Fix lack of bottom margin (#853)

Co-authored-by: V <vendicated@riseup.net>
main
Luna 1 year ago committed by GitHub
parent b21516d44e
commit 0a3dc5c6e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save