From 8200a596b9d207098bd4138c9602ddc7f4abcef0 Mon Sep 17 00:00:00 2001
From: ManUtopiK <emmanuel.salomon@gmail.com>
Date: Mon, 15 Feb 2021 05:12:11 +0100
Subject: [PATCH] fix: bad slot and css

---
 components/search/SearchContainer.vue |  2 +-
 pages/test.vue                        | 13 ++++++-------
 2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/components/search/SearchContainer.vue b/components/search/SearchContainer.vue
index 7668ebc1..14553019 100644
--- a/components/search/SearchContainer.vue
+++ b/components/search/SearchContainer.vue
@@ -73,7 +73,7 @@
         </SearchNoResult>
       </div>
 
-      <aside class="sticky h-full top-24 ml-12 bottom-12 z-10">
+      <aside class="sticky h-full top-24 ml-12 bottom-12 z-20">
         <slot
           name="sidebar"
           :query="query"
diff --git a/pages/test.vue b/pages/test.vue
index c3c5451c..c83667d7 100644
--- a/pages/test.vue
+++ b/pages/test.vue
@@ -40,13 +40,12 @@
       les afficher comme l'on veut...
     </p>
     <pre v-text="crowdfundingPreHOC" />
-    <G1Crowdfunding
-      v-slot="slotProps"
-      pubkey="78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8"
-    >
-      <strong>TOTAL = {{ slotProps.total }}</strong>
-      <div>MÉCÈNES = {{ slotProps.issuers.length }}</div>
-      <div style="font-size: 7px">{{ slotProps.graph }}</div>
+    <G1Crowdfunding pubkey="78ZwwgpgdH5uLZLbThUQH7LKwPgjMunYfLiCfUCySkM8">
+      <template #stats="slotProps">
+        <strong>TOTAL = {{ slotProps.total }}</strong>
+        <div>MÉCÈNES = {{ slotProps.issuers.length }}</div>
+        <div style="font-size: 7px">{{ slotProps.graph }}</div>
+      </template>
     </G1Crowdfunding>
 
     <p>Slot `button` :</p>
-- 
GitLab