Skip to content

Commit 1b91227

Browse files
laysentQingWei-Li
authored andcommitted
feat: make whole search result clickable (#285)
1 parent 3476f6f commit 1b91227

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/plugins/search/component.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,10 @@ function doSearch (value) {
9494
let html = ''
9595
matchs.forEach(post => {
9696
html += `<div class="matching-post">
97-
<h2><a href="${post.url}">${post.title}</a></h2>
97+
<a href="${post.url}">
98+
<h2>${post.title}</h2>
9899
<p>${post.content}</p>
100+
</a>
99101
</div>`
100102
})
101103

src/themes/basic/_layout.css

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ div#app {
5252
.search .search-keyword {
5353
color: var(--theme-color, $color-primary);
5454
font-style: normal;
55+
font-weight: bold;
5556
}
5657

5758
html,

0 commit comments

Comments
 (0)