1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/editable-list/editable-list.scss
Sebastian Malton f6971073b8 style editable list list of lists, switch to using <>
Signed-off-by: Sebastian Malton <smalton@mirantis.com>
2020-11-09 10:05:19 -05:00

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