Hacky-Fix: Make Edit-Box scrollable (#26)

This commit is contained in:
lagertonne 2019-12-22 21:56:38 +01:00
parent aa2fb8571b
commit 372d773ec4

View file

@ -63,4 +63,10 @@ export default {
border: 1px solid black;
padding: 10px;
}
/* Hacky Fix, for this Issue: https://hannover.ccc.de/gitlab/c3lf/lffrontend/issues/26 */
.modal-body {
max-height: calc(100vh - 200px);
overflow-y: auto;
}
</style>