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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;