Discover: sideFilter Funnel fix done.

This commit is contained in:
chiayin
2023-05-08 15:06:28 +08:00
parent ce5e5951b8
commit 9fd74b3858

View File

@@ -1,10 +1,14 @@
<template>
<div class=" w-full h-full">
<div class="h-[calc(100%_-_58px)] border-b border-neutral-400 mb-2 overflow-y-auto overflow-x-auto scrollbar">
<div class="h-[calc(100%_-_58px)] border-b border-neutral-400 mb-2 scrollbar overflow-x-hidden overflow-y-auto">
<div v-if="this.temporaryData.length === 0" class="h-full flex justify-center items-center">
<span class="text-neutral-500">No Filter.</span>
</div>
<div v-else>
<div class="text-primary h2 flex items-center justify-start my-4">
<span class="material-symbols-outlined m-2">info</span>
<p>Disabled filters will not be saved.</p>
</div>
<Timeline :value="ruleData">
<template #content="rule">
<div class="border-b border-neutral-300 flex justify-between items-center space-x-2">
@@ -21,7 +25,7 @@
</div>
</div>
</template>
</Timeline>
</Timeline>
</div>
</div>
<!-- Button -->