- Adjust NostrFeed.vue to enhance the scroll area height for better adaptability across screen sizes. - Update Home.vue to refine the container's padding and width for improved layout consistency on various devices.
13 lines
483 B
Vue
13 lines
483 B
Vue
<template>
|
|
<div class="w-full px-4 sm:px-6 lg:px-8 xl:px-12 2xl:px-16 py-8 space-y-6">
|
|
<PWAInstallPrompt auto-show />
|
|
<NotificationPermission auto-show />
|
|
<NostrFeed feed-type="announcements" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import NostrFeed from '@/components/nostr/NostrFeed.vue'
|
|
import NotificationPermission from '@/components/notifications/NotificationPermission.vue'
|
|
import PWAInstallPrompt from '@/components/pwa/PWAInstallPrompt.vue'
|
|
</script>
|