style(ModalBase): add max-height to normal modals

This commit is contained in:
Nybkox
2025-02-11 11:54:31 +01:00
parent b5766494e1
commit 171b967cc4

View File

@@ -34,7 +34,6 @@
if (oldFocus) oldFocus.focus();
};
});
</script>
<!-- The Modal -->
@@ -88,6 +87,7 @@
border-radius: 10px;
margin: auto;
margin-top: 15vh;
max-height: 70vh;
width: 50%;
}
@@ -160,5 +160,4 @@
border-top: 1px solid var(--theme-border);
background-color: var(--theme-bg-modalheader);
}
</style>