36 lines
402 B
SCSS
36 lines
402 B
SCSS
.array-editor {
|
|
|
|
.array-entry {
|
|
display: flex;
|
|
gap: 4px;
|
|
|
|
.label {
|
|
flex: 1 0;
|
|
align-self: center;
|
|
}
|
|
|
|
button.remove {
|
|
flex: 0 1;
|
|
}
|
|
|
|
&:nth-child(odd) {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
gap: 4px;
|
|
|
|
select {
|
|
flex: 1 0;
|
|
}
|
|
|
|
button {
|
|
height: 32px;
|
|
width: 32px;
|
|
}
|
|
}
|
|
|
|
} |