Skip to content

Commit

Permalink
fix: remove item name
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuangs committed Aug 15, 2024
1 parent f431dda commit dba0c27
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/frontend/src/pages/Search/HomeComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
>
<div class="txt">
<img :src="item.icon" />
<span class="name">{{ item.name }}</span>
<span class="name q-ml-sm text-ink-2">{{ item.title }}</span>
<span class="name">{{ item.title }}</span>
<!-- <span class="name q-ml-sm text-ink-2">{{ item.title }}</span> -->
<!-- <span class="desc">{{ item.type }}</span> -->
</div>
<div class="desc q-mr-sm text-ink-2">
Expand Down Expand Up @@ -232,6 +232,8 @@ onUnmounted(() => {
height: calc(100% - 48px);
border-top: 1px solid #d8d8d8;
overflow: scroll;
scrollbar-width: none;
.category {
width: calc(100% - 32px);
margin: 0 16px;
Expand Down Expand Up @@ -278,10 +280,10 @@ onUnmounted(() => {
}
&:hover {
background: rgba(26, 19, 15, 0.06);
background: $background-hover;
}
&.isActive {
background: rgba(26, 19, 15, 0.06);
background: $background-selected;
}
}
}
Expand Down

0 comments on commit dba0c27

Please sign in to comment.