23 lines
457 B
CSS
23 lines
457 B
CSS
.vc-position-inherit {
|
|
position: inherit;
|
|
}
|
|
|
|
/**
|
|
* copy pasted from discord css. not really webpack-findable since it's the only class in the module
|
|
**/
|
|
|
|
.vc-image-modal {
|
|
background: transparent !important;
|
|
box-shadow: none !important;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 0;
|
|
}
|
|
|
|
@media(width <= 485px) {
|
|
.vc-image-modal {
|
|
overflow: visible;
|
|
overflow: initial;
|
|
}
|
|
}
|