77 lines
1.1 KiB
Plaintext
77 lines
1.1 KiB
Plaintext
/* pages/readingHistory/index.wxss */
|
|
page {
|
|
background-color: #ebedf0;
|
|
}
|
|
|
|
.wrapper {
|
|
padding: 0 20rpx 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.historyTitle {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.historyTitle .text {
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.tableWrapper {
|
|
width: 100%;
|
|
margin-top: 30rpx;
|
|
background-color: #fff;
|
|
overflow-x: auto;
|
|
padding: 20rpx 12rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.thead {
|
|
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
.thead .th {
|
|
padding: 10rpx;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.primaryTextBtn {
|
|
color: #1989fa;
|
|
}
|
|
|
|
.tbody {
|
|
width: 100%;
|
|
}
|
|
|
|
.tbody .tr {
|
|
padding: 10rpx;
|
|
border-bottom: 1rpx solid #EEEEEE;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.tbody .tr {
|
|
word-break: break-all;
|
|
text-align: center;
|
|
}
|
|
|
|
.more-icon {
|
|
padding: 20rpx;
|
|
color: #1989fa;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|