54 lines
850 B
Plaintext
54 lines
850 B
Plaintext
/* components/journal-list/index.less */
|
|
.journal-list {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.search-bar {
|
|
padding: 8rpx 16rpx;
|
|
flex-shrink: 0;
|
|
background: var(--td-bg-color-container);
|
|
box-shadow: 0 4rpx 8rpx var(--theme-shadow-light);
|
|
}
|
|
|
|
.scroll-content {
|
|
flex: 1;
|
|
height: 0;
|
|
padding: 0;
|
|
|
|
.item {
|
|
|
|
&.selected {
|
|
background: var(--td-bg-color-secondarycontainer);
|
|
}
|
|
|
|
.thumb {
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
flex-shrink: 0;
|
|
object-fit: cover;
|
|
margin-right: 16rpx;
|
|
border-radius: 8rpx;
|
|
background: var(--td-bg-color-component);
|
|
}
|
|
|
|
.date {
|
|
color: gray;
|
|
}
|
|
|
|
.location {
|
|
font-size: 24rpx;
|
|
}
|
|
}
|
|
|
|
.loading,
|
|
.finished {
|
|
color: var(--td-text-color-placeholder);
|
|
padding: 32rpx 0;
|
|
font-size: 24rpx;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|