mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(editor): Fix alignment in RMC component (#13167)
This commit is contained in:
parent
115a367cae
commit
78644b0ec7
|
@ -444,6 +444,7 @@ defineExpose({
|
|||
|
||||
<style module lang="scss">
|
||||
.parameterItem {
|
||||
--delete-option-width: 22px;
|
||||
display: flex;
|
||||
padding: 0 0 0 var(--spacing-s);
|
||||
|
||||
|
@ -451,6 +452,10 @@ defineExpose({
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.parameterInput:first-child {
|
||||
margin-left: var(--delete-option-width);
|
||||
}
|
||||
|
||||
&.hasIssues {
|
||||
.parameterIssues {
|
||||
float: none;
|
||||
|
|
Loading…
Reference in a new issue