diff options
author | LordElias <55048695+LordEliasTM@users.noreply.github.com> | 2023-04-30 15:29:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-30 10:29:45 -0300 |
commit | a73858d131ac8f05fa06f67fe5858f8f4959b13a (patch) | |
tree | 750683e3408ce422d10989b52067aa2bff406880 /src/plugins/userVoiceShow/components | |
parent | b0caa6f4db7b6219f0a07dfb5089ba7767070328 (diff) | |
download | Vencord-a73858d131ac8f05fa06f67fe5858f8f4959b13a.tar.gz Vencord-a73858d131ac8f05fa06f67fe5858f8f4959b13a.tar.bz2 Vencord-a73858d131ac8f05fa06f67fe5858f8f4959b13a.zip |
UserVoiceShow: Fix lack of bottom padding for popout on current user and broken modal patch (#873)
Diffstat (limited to 'src/plugins/userVoiceShow/components')
-rw-r--r-- | src/plugins/userVoiceShow/components/VoiceChannelSection.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/plugins/userVoiceShow/components/VoiceChannelSection.css b/src/plugins/userVoiceShow/components/VoiceChannelSection.css index c0bc49d..0cf8701 100644 --- a/src/plugins/userVoiceShow/components/VoiceChannelSection.css +++ b/src/plugins/userVoiceShow/components/VoiceChannelSection.css @@ -13,6 +13,14 @@ margin-bottom: 6px; } -.vc-uvs-modal-margin > [class^="section"] { +.vc-uvs-modal-margin { margin: 0 12px; } + +.vc-uvs-modal-margin div { + margin-bottom: 0 !important; +} + +.vc-uvs-popout-margin > [class^="section"] { + margin-top: -12px; +} |