think/packages/client/src/components/message/index.module.scss

55 lines
906 B
SCSS
Raw Normal View History

2022-02-20 11:51:55 +00:00
.titleWrap {
padding: 8px 16px;
}
.itemsWrap {
max-height: 240px;
overflow: auto;
}
.itemWrap {
border-radius: var(--semi-border-radius-small);
&:hover {
color: var(--semi-color-text-0);
2022-03-27 07:43:06 +00:00
background-color: var(--semi-color-fill-0);
2022-02-20 11:51:55 +00:00
}
.item {
display: flex;
justify-content: space-between;
2022-03-27 07:43:06 +00:00
align-items: center;
2022-02-20 11:51:55 +00:00
width: 100%;
height: 32px;
padding: 4px 16px;
.leftWrap {
display: flex;
overflow: hidden;
color: var(--semi-color-primary);
2022-03-27 07:43:06 +00:00
text-overflow: ellipsis;
white-space: nowrap;
align-items: center;
2022-02-20 11:51:55 +00:00
> span {
word-break: break-all;
}
svg {
fill: var(--semi-color-primary);
color: var(--semi-color-primary);
}
> div {
display: flex;
flex-direction: column;
}
}
}
}
.paginationWrap {
display: flex;
justify-content: center;
}