product_builder_layout.vue 326 B

1234567891011121314151617181920
  1. <template>
  2. <div class="flex column stretch layout-wrap">
  3. <pc-header-lite></pc-header-lite>
  4. <nuxt />
  5. </div>
  6. </template>
  7. <style
  8. lang="scss"
  9. scoped
  10. >
  11. .layout-wrap {
  12. position: relative;
  13. height: 100%;
  14. box-sizing: border-box;
  15. margin: 0 auto;
  16. width: 100%;
  17. max-width: 1880px;
  18. padding: 0 40px;
  19. }
  20. </style>