fix(editor): Fix alignment in RMC component (#13167)

This commit is contained in:
Elias Meire
2025-02-11 13:36:18 +01:00
committed by GitHub
parent 115a367cae
commit 78644b0ec7

View File

@@ -444,6 +444,7 @@ defineExpose({
<style module lang="scss"> <style module lang="scss">
.parameterItem { .parameterItem {
--delete-option-width: 22px;
display: flex; display: flex;
padding: 0 0 0 var(--spacing-s); padding: 0 0 0 var(--spacing-s);
@@ -451,6 +452,10 @@ defineExpose({
width: 100%; width: 100%;
} }
.parameterInput:first-child {
margin-left: var(--delete-option-width);
}
&.hasIssues { &.hasIssues {
.parameterIssues { .parameterIssues {
float: none; float: none;