data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: absolute -> fixed so that the pet stays in same place while scrolling

dusk 6343d52d ddfc3725

+2 -5
+1 -1
src/components/pet.svelte
··· 234 234 mouseY = 0.0; 235 235 } 236 236 }} 237 - class="absolute bottom-[5vh] z-[1000] hover:animate-squiggle" 237 + class="fixed bottom-[5vh] z-[1000] hover:animate-squiggle" 238 238 style="cursor: url('/icons/gaze.webp'), pointer;" 239 239 > 240 240 <!-- svelte-ignore a11y_no_noninteractive_element_interactions -->
+1 -4
vite.config.ts
··· 2 2 import { defineConfig } from 'vite'; 3 3 4 4 export default defineConfig({ 5 - plugins: [sveltekit()], 6 - server: { 7 - //allowedHosts: true 8 - } 5 + plugins: [sveltekit()] 9 6 });