Skip to content

Commit

Permalink
fix: list overview preview border
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Feb 24, 2024
1 parent a34c693 commit 4bedcec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/client/pages/overview.vue
Expand Up @@ -13,6 +13,10 @@ import NoteEditor from '../internals/NoteEditor.vue'
const cardWidth = 450
useHead({
title: 'List Overview',
})
const blocks: Map<number, HTMLElement> = reactive(new Map())
const activeBlocks = ref<number[]>([])
const edittingNote = ref<string | null>(null)
Expand Down Expand Up @@ -101,7 +105,7 @@ onMounted(() => {
{{ idx + 1 }}
</div>
<div
class="border rounded border-main overflow-hidden bg-main my5 select-none"
class="border rounded border-main overflow-hidden bg-main my5 select-none h-max"
:style="themeVars"
@dblclick="openSlideInNewTab(route.path)"
>
Expand Down

0 comments on commit 4bedcec

Please sign in to comment.