support archive moment to exist journal

This commit is contained in:
Timi
2025-12-08 15:52:59 +08:00
parent 75b553ac93
commit a25c38d50d
13 changed files with 392 additions and 133 deletions

View File

@ -0,0 +1,30 @@
/* 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;
}
}