[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
parent 96f2a8f8fc
commit 35571b8d13
1 changed files with 6 additions and 0 deletions

View File

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