small fixes

This commit is contained in:
Believethehype
2024-04-09 15:21:57 +02:00
parent ef057d637d
commit fc43890740
2 changed files with 15 additions and 3 deletions

View File

@@ -17,10 +17,10 @@
<div class="card-title text-base-100-content font-bold"> <div class="card-title text-base-100-content font-bold">
What is this? What is this?
</div> </div>
<p>Data Vending Machines are data-processing tools on top of th Nostr protocol. <p>Data Vending Machines are data-processing tools on top of the Nostr protocol.
</p> </p>
<p> <p>
You give them some data, a few sats, and they give you back some data.</p> You give them some data, sometimes a few sats, and they give you back some data.</p>
<p> <p>
This page is just a demo client, showcasing a variety of DVM use-cases. Search Content, Search Profiles, Content Discovery, Summarization of events, Image Generation, Scheduling Notes. This page is just a demo client, showcasing a variety of DVM use-cases. Search Content, Search Profiles, Content Discovery, Summarization of events, Image Generation, Scheduling Notes.
@@ -40,6 +40,7 @@
A List of all DVMs that have a NIP89 announcement is available below, ordered by latest announcement. A List of all DVMs that have a NIP89 announcement is available below, ordered by latest announcement.
</p> </p>
</div> </div>
</div> </div>
@@ -146,6 +147,7 @@ import {Alphabet, ClientBuilder, NostrSigner, Filter, Keys, NostrDatabase, Tag}
import miniToastr from "mini-toastr"; import miniToastr from "mini-toastr";
import VueNotifications from "vue-notifications"; import VueNotifications from "vue-notifications";
import StringUtil from "@/components/helper/string.ts"; import StringUtil from "@/components/helper/string.ts";
import Donate from "@/components/Donate.vue"
import deadnip89s from './data/deadnip89s.json' import deadnip89s from './data/deadnip89s.json'
@@ -180,6 +182,16 @@ async mounted(){
} }
</script> </script>
<style scoped> <style scoped>
donate{
position: fixed;
bottom:0;
background: rgba(0, 0, 0, 0.5);;
grid-area: footer;
width: 100vw;
height: 32px;
z-index: 10;
text-align: center;
}
</style> </style>

View File

@@ -38,7 +38,7 @@ import {isVisible} from "bootstrap/js/src/util/index.js";
</aside> </aside>
<footer> <footer>
<Donate style="margin-top: 4px"/> <!--<Donate style="margin-top: 4px"/> -->
</footer> </footer>
</div> </div>
</template> </template>