29 lines
393 B
CSS
29 lines
393 B
CSS
.cluster {
|
|
margin-left: 10px;
|
|
color: #222;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.item-name {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.item-actions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
.item-actions button {
|
|
height: 1.5rem;
|
|
width: 1.5rem;
|
|
margin-left: 0.15rem;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|