fix(ServerProfile): crop banner to prevent overflow (#2250)
This commit is contained in:
parent
34390e0365
commit
1fbc4f7ce1
|
@ -4,8 +4,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.vc-gp-banner {
|
.vc-gp-banner {
|
||||||
width: 100%;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
aspect-ratio: auto 240 / 135;
|
||||||
|
height: 334px;
|
||||||
|
width: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
overflow: clip;
|
||||||
|
overflow-clip-margin: content-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vc-gp-header {
|
.vc-gp-header {
|
||||||
|
|
Loading…
Reference in a new issue