Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit 933ab34

Browse files
authored
fix: obscured content on components page when scrolling (#209)
1 parent 2a2f602 commit 933ab34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/client/pages/components.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ watchEffect(() => {
126126
<template>
127127
<div h-screen n-panel-grids>
128128
<Splitpanes>
129-
<Pane border="r base">
129+
<Pane flex flex-col border="r base">
130130
<div v-if="componentWalker" sticky left-0 top-0 z-300 w-full flex gap2 px10px py12px bg-base>
131131
<VDTextInput v-model="filterName" placeholder="Find components..." flex-1 />
132132
<button p2 @click="() => toggleInspector()">
@@ -144,7 +144,7 @@ watchEffect(() => {
144144
<ComponentTreeNode v-for="(item) in componentTree" :key="item.id" :data="item" />
145145
</div>
146146
</Pane>
147-
<Pane>
147+
<Pane flex flex-col>
148148
<div v-if="normalizedComponentState.length" border="b base" flex justify-between px-4 py-2>
149149
<span v-if="selectedComponentName" text-sm text-primary op90>&lt;{{ selectedComponentName }}&gt;</span>
150150
<p flex>

0 commit comments

Comments
 (0)