AboutView.vue 220 B

123456789101112131415
  1. <template>
  2. <div class="about">
  3. <h1>This is an about page</h1>
  4. </div>
  5. </template>
  6. <style>
  7. @media (min-width: 1024px) {
  8. .about {
  9. min-height: 100vh;
  10. display: flex;
  11. align-items: center;
  12. }
  13. }
  14. </style>