1
0

default.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <script setup lang="ts">
  2. useHead({
  3. title: 'APECS — Casually Building Crypto',
  4. meta: [
  5. { name: 'description', content: 'A permissionless, multi-chain platform for P2P electronic cash Builders to do wtf they need to do.' }
  6. ],
  7. // ogTitle: 'APECS — Casually Building Crypto',
  8. // description: 'A permissionless, multi-chain platform for P2P electronic cash Builders to do wtf they need to do.',
  9. // ogDescription: 'A permissionless, multi-chain platform for P2P electronic cash Builders to do wtf they need to do.',
  10. // ogImage: 'https://apecs.dev/poster.jpg',
  11. // twitterCard: 'summary_large_image',
  12. })
  13. </script>
  14. <template>
  15. <main class="w-screen flex flex-row bg-pink-500">
  16. <Menu class="hidden lg:block w-80 h-screen flex-none overflow-x-hidden overflow-y-scroll" />
  17. <section class="w-full h-screen bg-gradient-to-r from-gray-50 to-gray-200 overflow-x-hidden">
  18. <SiteHeader />
  19. <div id="content-win">
  20. <slot />
  21. </div>
  22. </section>
  23. </main>
  24. </template>
  25. <style>
  26. /* global window */
  27. main::-webkit-scrollbar, section::-webkit-scrollbar {
  28. /* display: none; */
  29. width: 4px;
  30. height: 8px;
  31. background-color: #00A774; /* or add it to the track */
  32. }
  33. main::-webkit-scrollbar-thumb, section::-webkit-scrollbar-thumb {
  34. background: #8dc351;
  35. }
  36. #content-win {
  37. height: calc(100% - 70px);
  38. }
  39. </style>