fix(modal): fix modal editor layout to prevent overlap by adding relative positioning and reducing height

This commit is contained in:
2025-12-30 12:55:04 +00:00
parent 4ada9b719f
commit ba95fc2c80
5 changed files with 9 additions and 2 deletions

View File

@@ -541,7 +541,8 @@ export class DeesInputCode extends DeesInputBase<string> {
margin: 0 4px;
}
.modal-editor-wrapper {
height: calc(100vh - 160px);
position: relative;
height: calc(100vh - 175px);
width: 100%;
}
</style>