2024-07-16 16:33:41 +02:00

41 lines
556 B
SCSS

.root {
.head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
overflow: hidden;
.text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
svg {
cursor: pointer;
min-width: 21px;
fill: var(--color-neutral-600);
}
}
.cell {
overflow: hidden;
word-wrap: break-word;
.content {
max-width: 270px;
width: 100%;
word-break: break-word;
> :first-child {
width: 100%;
}
}
&:hover {
background-color: var(--background-elevation-1);
}
}
}