1
0
Fork 0

[UI] Set max-width for the media info modal.

This modal can grow very large depending on the size of the media
metadata, thus it's wise to keep its width in check.
This commit is contained in:
Fabio Manganiello 2023-11-03 21:49:58 +01:00
commit 35571b8d13

View file

@ -458,4 +458,10 @@ export default {
padding: 0;
}
}
:deep(.media-info-container) {
.modal {
max-width: 70em;
}
}
</style>