WIP: primer avance con la Busqueda de Propiedades

Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
2024-12-07 19:05:07 -03:00
parent dbc255dd4b
commit 990f866a71
8 changed files with 207 additions and 1 deletions
@@ -0,0 +1,14 @@
<script lang="ts">
const scrollToTop = () => {
window.scrollTo({ top: 0, behavior: "smooth" });
};
</script>
<button
class="btn btn-primary position-fixed bottom-0 end-0 mb-4 me-4 p-3"
on:click={scrollToTop}
title="Ir arriba"
style="z-index: 1000; "
>
</button>