1
0
mirror of https://github.com/sendevia/website.git synced 2026-03-06 07:40:50 +08:00

refactor(AppBar): remove commented-out code and clean up styles

This commit is contained in:
2026-01-12 16:41:36 +08:00
parent 651713067c
commit 1b74ac5964
2 changed files with 0 additions and 11 deletions

View File

@@ -154,10 +154,6 @@ onUnmounted(() => {
:tabindex="isTabFocusable ? 0 : -1"
>
<div class="action-area">
<!-- <div class="leading-button">
<MaterialButton color="text" icon="menu" size="xs" :tabindex="isTabFocusable ? 0 : -1" />
</div> -->
<input
ref="searchInput"
v-model="query"
@@ -188,7 +184,6 @@ onUnmounted(() => {
<p v-if="post.date" class="date">{{ post.date }}</p>
</div>
<p v-if="post.description" class="description">{{ post.description }}</p>
<!-- 只有不是最后一项时才显示分割线 -->
<hr v-if="index !== filteredPosts.length - 1" />
</a>
</div>

View File

@@ -177,12 +177,6 @@
opacity: 1;
visibility: visible;
// .action-area {
// .search-input {
// margin-inline-start: 56px;
// }
// }
.result-area {
height: calc(100% - (80px + 64px));
}