32 lines
600 B
CSS
32 lines
600 B
CSS
.palette {
|
|
display: grid;
|
|
gap: var(--space-3);
|
|
padding-bottom: var(--space-5);
|
|
}
|
|
|
|
/* The list is given a height of its own: the virtualizer needs a container with a size, not one of
|
|
"however much it comes to". */
|
|
.results {
|
|
display: flex;
|
|
height: var(--modal-height-list);
|
|
min-height: 0;
|
|
}
|
|
|
|
.label {
|
|
overflow: hidden;
|
|
flex: 1;
|
|
min-width: 0;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.what {
|
|
flex: none;
|
|
color: var(--color-text-secondary);
|
|
font-size: var(--font-size-small);
|
|
}
|
|
|
|
.more {
|
|
color: var(--color-text-secondary);
|
|
font-size: var(--font-size-small);
|
|
}
|