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:
parent
4a1a74f60e
commit
88bdafa857
1 changed files with 6 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue