app.vue 280 B

12345678910111213141516171819202122
  1. <template>
  2. <!-- Forms -->
  3. <FormDebug />
  4. <FormOTA />
  5. <NuxtLayout>
  6. <NuxtPage />
  7. </NuxtLayout>
  8. </template>
  9. <script setup lang="ts">
  10. </script>
  11. <style>
  12. /* #__nuxt * {
  13. border: 1px solid rgba(255,255,0,0.3)
  14. } */
  15. html, body {
  16. overscroll-behavior-x: none;
  17. }
  18. </style>