diff --git a/src/templates/templatemanager.js b/src/templates/templatemanager.js index 198e8bd..340c0a8 100644 --- a/src/templates/templatemanager.js +++ b/src/templates/templatemanager.js @@ -63,9 +63,15 @@ function getNodeStyles(attributes) { if (attributes?.height) { styles += `height: ${attributes.height};`; } + if (attributes?.minWidth) { + styles += `min-width: ${attributes.minWidth};`; + } if (attributes?.maxWidth) { styles += `max-width: ${attributes.maxWidth};`; } + if (attributes?.minHeight) { + styles += `min-height: ${attributes.minHeight};`; + } if (attributes?.maxHeight) { styles += `max-height: ${attributes.maxHeight};`; }