add note-detail height to make canvas visible

due to some upstream changes, this was necessary.
otherwise complete inside container was not visible.
This commit is contained in:
thfrei 2021-02-15 16:34:44 +01:00 committed by Tom
parent 93e485cea9
commit 8897d98bd9

View file

@ -53,6 +53,12 @@ const TPL = `
<button id="zoom-100" class="btn btn-info">Zoom 100%</button>
<button id="clear-canvas" class="btn btn-info">Clear</button>
</div>
<style>
.note-detail {
height: 100%;
}
</style>
`;
export default class CanvasNoteTypeWidget extends TypeWidget {