Default.vue 380 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="layout">
  3. <!-- Contient les pages -->
  4. <slot/>
  5. </div>
  6. </template>
  7. <style>
  8. body {
  9. font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  10. margin:0;
  11. padding:0;
  12. line-height: 1.5;
  13. }
  14. .layout {
  15. max-width: 760px;
  16. margin: 0 auto;
  17. padding-left: 20px;
  18. padding-right: 20px;
  19. }
  20. </style>