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

Commit

Permalink
fix: obscured content on components page when scrolling (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
songjianet authored Aug 15, 2023
1 parent 2a2f602 commit 933ab34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/pages/components.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ watchEffect(() => {
<template>
<div h-screen n-panel-grids>
<Splitpanes>
<Pane border="r base">
<Pane flex flex-col border="r base">
<div v-if="componentWalker" sticky left-0 top-0 z-300 w-full flex gap2 px10px py12px bg-base>
<VDTextInput v-model="filterName" placeholder="Find components..." flex-1 />
<button p2 @click="() => toggleInspector()">
Expand All @@ -144,7 +144,7 @@ watchEffect(() => {
<ComponentTreeNode v-for="(item) in componentTree" :key="item.id" :data="item" />
</div>
</Pane>
<Pane>
<Pane flex flex-col>
<div v-if="normalizedComponentState.length" border="b base" flex justify-between px-4 py-2>
<span v-if="selectedComponentName" text-sm text-primary op90>&lt;{{ selectedComponentName }}&gt;</span>
<p flex>
Expand Down

0 comments on commit 933ab34

Please sign in to comment.