🐛 Fixed the 51la widget load data issue.

This commit is contained in:
凡梦星尘
2022-10-27 17:29:18 +08:00
parent 0d1b00f7b0
commit ac712b9277
7 changed files with 46 additions and 41 deletions

View File

@@ -24,13 +24,11 @@
.search-popup {
background: var(--card-bg-color);
border-radius: 5px;
height: 60%;
height: 65%;
margin: auto;
transform: scale(0);
transition: transform .4s;
width: 700px;
//display: flex;
//flex-wrap: wrap;
.search-active & {
transform: scale(1);
@@ -77,10 +75,7 @@
}
.search-result-container {
/* height: calc(100% - 65px);
@include mobile() {
height: calc(100% - 105px);
} */
height: calc(100% - 55px);
overflow: auto;
padding: 0px 25px;
}
@@ -94,28 +89,23 @@
.search-meta-info {
height: 26px;
display: flex;
padding: 5px 0;
.search-hit-stats {
font-size: $font-size-smaller;
font-size: $font-size-smaller;
width: 65%;
padding: 2px 8px;
float: left;
}
.search-vendor {
width: 34%;
text-align: right;
font-size: $font-size-small;
@include mobile() {
font-size: $font-size-smaller;
}
font-weight: bold;
float: right;
img {
width: 68px;
@include mobile() {
width: 48px;
}
margin: 5px;
vertical-align: middle;
display: inline;
@@ -220,4 +210,4 @@
margin: auto;
}
}
}
}