404.vue 247 B

12345678910111213141516
  1. <template>
  2. <div class="http-404">
  3. <h1>404</h1>
  4. </div>
  5. </template>
  6. <style lang="scss">
  7. .http-404 {
  8. position: absolute;
  9. top: 40%;
  10. left: 50%;
  11. font-size: 32px;
  12. color: rgb(0, 174, 255);
  13. transform: translate(-50%, -50%);
  14. }
  15. </style>