mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
fix(editor): fix bug where one cannot scroll down parameters (#4348)
This commit is contained in:
parent
41a7f9cc8e
commit
7a76c2a35d
|
@ -410,10 +410,6 @@ export default Vue.extend({
|
|||
visibility: hidden;
|
||||
}
|
||||
|
||||
.double-width {
|
||||
left: 90%;
|
||||
}
|
||||
|
||||
.dragButtonContainer {
|
||||
position: absolute;
|
||||
top: -12px;
|
||||
|
|
|
@ -32,7 +32,6 @@
|
|||
:hideInputAndOutput="activeNodeType === null"
|
||||
:position="isTriggerNode && !showTriggerPanel ? 0 : undefined"
|
||||
:isDraggable="!isTriggerNode"
|
||||
:hasDoubleWidth="activeNodeType && activeNodeType.parameterPane === 'wide'"
|
||||
:nodeType="activeNodeType"
|
||||
@close="close"
|
||||
@init="onPanelsInit"
|
||||
|
|
|
@ -818,7 +818,7 @@ export default mixins(externalHooks, genericHelpers, nodeHelpers).extend({
|
|||
.node-parameters-wrapper {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
padding: 0 20px;
|
||||
padding: 0 20px 200px 20px;
|
||||
}
|
||||
|
||||
&.dragging {
|
||||
|
|
Loading…
Reference in a new issue