Browse Source

fix: 🧩 搜索结果优化

pull/2/head
liyongle 3 years ago
parent
commit
142dfd9a33
  1. 9
      src/components/Search/Result.vue

9
src/components/Search/Result.vue

@ -38,8 +38,7 @@ function show(item: Shop) {
.result-container { .result-container {
width: 714px; width: 714px;
height: 694px; height: 694px;
padding-top: 64px;
padding-left: 65px;
padding: 64px 85px 0 65px;
background: #fff; background: #fff;
border-radius: 12px 12px 0 0; border-radius: 12px 12px 0 0;
.myScoll { .myScoll {
@ -48,7 +47,7 @@ function show(item: Shop) {
} }
.shop_list { .shop_list {
display: grid; display: grid;
gap: 32px 180px;
gap: 32px 150px;
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
padding-bottom: 10px; padding-bottom: 10px;
.shop_item { .shop_item {
@ -71,12 +70,12 @@ function show(item: Shop) {
} }
} }
.info { .info {
width: 96px;
width: 120px;
height: 60px; height: 60px;
.name { .name {
@include no-wrap; @include no-wrap;
width: 96px;
width: 120px;
height: 32px; height: 32px;
margin-bottom: 6px; margin-bottom: 6px;
font-size: 24px; font-size: 24px;

Loading…
Cancel
Save