1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-10 18:06:22 +00:00

fix(ServerProfile): crop banner to prevent overflow (#2250)

This commit is contained in:
Haruka 2024-03-11 17:19:35 +02:00 committed by Luna
parent 4a1a74f60e
commit 88bdafa857

View file

@ -4,8 +4,13 @@
}
.vc-gp-banner {
width: 100%;
cursor: pointer;
aspect-ratio: auto 240 / 135;
height: 334px;
width: 100%;
object-fit: cover;
overflow: clip;
overflow-clip-margin: content-box;
}
.vc-gp-header {