31 lines
482 B
Plaintext
31 lines
482 B
Plaintext
/* components/journal-list/index.less */
|
|
.journal-list {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.item {
|
|
|
|
&.selected {
|
|
background: var(--td-bg-color-secondarycontainer);
|
|
}
|
|
|
|
.thumb {
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
object-fit: cover;
|
|
background: var(--td-bg-color-component);
|
|
flex-shrink: 0;
|
|
margin-right: 16rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
}
|
|
|
|
.loading,
|
|
.finished,
|
|
.empty {
|
|
color: var(--td-text-color-placeholder);
|
|
padding: 24rpx 0;
|
|
text-align: center;
|
|
}
|
|
}
|