Merge pull request #4412 from jleh/overlapping-presets-fix

Fixed overlapping in feature editor
This commit is contained in:
Bryan Housel
2017-10-08 21:10:36 -04:00
committed by GitHub

View File

@@ -223,7 +223,7 @@ export function uiPresetList(context) {
box.transition()
.duration(200)
.style('opacity', '1')
.style('max-height', 200 + preset.members.collection.length * 80 + 'px')
.style('max-height', 200 + preset.members.collection.length * 190 + 'px')
.style('padding-bottom', '20px');
}
};