diff --git a/config/current.ver b/config/current.ver index bab6a90..7da1aa7 100755 --- a/config/current.ver +++ b/config/current.ver @@ -1 +1 @@ -1.2.89 \ No newline at end of file +1.2.90 \ No newline at end of file diff --git a/public/assets/js/bridge/table-builder.js b/public/assets/js/bridge/table-builder.js index b0bb11b..2c1fd73 100755 --- a/public/assets/js/bridge/table-builder.js +++ b/public/assets/js/bridge/table-builder.js @@ -140,9 +140,10 @@ container.style.display = 'flex'; container.style.flexDirection = 'column'; container.style.gap = '12px'; - container.style.minWidth = '280px'; - container.style.maxWidth = '360px'; + container.style.minWidth = '320px'; + container.style.maxWidth = '520px'; container.style.width = '100%'; + container.style.boxSizing = 'border-box'; const label = document.createElement('label'); label.textContent = 'Anzahl Zeilen'; @@ -151,6 +152,7 @@ label.style.display = 'flex'; label.style.flexDirection = 'column'; label.style.gap = '6px'; + label.style.width = '100%'; const input = document.createElement('input'); input.type = 'number'; @@ -173,6 +175,7 @@ colLabel.style.display = 'flex'; colLabel.style.flexDirection = 'column'; colLabel.style.gap = '6px'; + colLabel.style.width = '100%'; const colInput = document.createElement('input'); colInput.type = 'number';