mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
28 lines
462 B
SCSS
28 lines
462 B
SCSS
.EditableList {
|
|
.el-contents {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: $padding * 2;
|
|
|
|
.el-value-remove {
|
|
.Icon {
|
|
justify-content: unset;
|
|
}
|
|
}
|
|
|
|
.el-item {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
padding: $padding $padding * 2;
|
|
margin-bottom: 1px;
|
|
|
|
:last-child {
|
|
margin-bottom: unset;
|
|
}
|
|
|
|
:first-child {
|
|
align-self: center;
|
|
}
|
|
}
|
|
}
|
|
} |