Skip to content
Merged

wider #662

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tulip/amyboardweb/static/editor_knobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function init_knobs(knobConfigs, gridId, onChange) {
minLabel.style.marginBottom = "2px";
const minInput = document.createElement("input");
minInput.type = "text";
minInput.style.width = "48px";
minInput.style.width = "60px";
minInput.style.boxSizing = "border-box";
minInput.style.height = "18px";
minInput.style.padding = "1px 4px";
Expand All @@ -150,7 +150,7 @@ function init_knobs(knobConfigs, gridId, onChange) {
maxLabel.style.marginBottom = "2px";
const maxInput = document.createElement("input");
maxInput.type = "text";
maxInput.style.width = "48px";
maxInput.style.width = "60px";
maxInput.style.boxSizing = "border-box";
maxInput.style.height = "18px";
maxInput.style.padding = "1px 4px";
Expand Down Expand Up @@ -178,7 +178,7 @@ function init_knobs(knobConfigs, gridId, onChange) {

const input = document.createElement("input");
input.type = "text";
input.style.width = "48px";
input.style.width = "60px";
input.style.boxSizing = "border-box";
input.style.marginBottom = "6px";
input.style.height = "18px";
Expand Down