We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3476f6f commit 1b91227Copy full SHA for 1b91227
src/plugins/search/component.js
@@ -94,8 +94,10 @@ function doSearch (value) {
94
let html = ''
95
matchs.forEach(post => {
96
html += `<div class="matching-post">
97
-<h2><a href="${post.url}">${post.title}</a></h2>
+<a href="${post.url}">
98
+<h2>${post.title}</h2>
99
<p>${post.content}</p>
100
+</a>
101
</div>`
102
})
103
src/themes/basic/_layout.css
@@ -52,6 +52,7 @@ div#app {
52
.search .search-keyword {
53
color: var(--theme-color, $color-primary);
54
font-style: normal;
55
+ font-weight: bold;
56
}
57
58
html,
0 commit comments