39 lines
659 B
Plaintext
39 lines
659 B
Plaintext
/* mycomponent/searchHistory/searchHistory.wxss */
|
|
.search-history {
|
|
margin: 14rpx 38rpx;
|
|
text-align: left;
|
|
background: #fff;
|
|
}
|
|
|
|
.search-head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.tag {
|
|
max-width: 100%;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin: 4rpx;
|
|
padding: 10rpx 14rpx;
|
|
font-size: 22rpx;
|
|
line-height: 22rpx;
|
|
background-color: #f2f2f2;
|
|
color: #4e4e4e;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.tag .text {
|
|
display: inline-block;
|
|
margin-right: 10rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.tag .delete {
|
|
display: inline-block;
|
|
margin: 0 3rpx 0 6rpx;
|
|
}
|