We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2973d commit 62eaa09Copy full SHA for 62eaa09
src/demo/js/options/config.js
@@ -10,7 +10,8 @@ const config = {
10
addColumnBtn.type = 'button'
11
addColumnBtn.className = 'btn btn-sm btn-secondary'
12
addColumnBtn.textContent = 'Add Column'
13
- addColumnBtn.style = 'border:1px solid #ccc; width: auto;'
+ addColumnBtn.style.border = '1px solid #ccc'
14
+ addColumnBtn.style.width = 'auto'
15
addColumnBtn.addEventListener('click', () => {
16
evt.target.addChild()
17
})
0 commit comments