InstallHeader.vue 423 B

1234567891011121314151617181920212223242526272829
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <div class="project-title">
  5. <h1>Nginx UI</h1>
  6. <h3>
  7. {{ $gettext('Install') }}
  8. </h3>
  9. </div>
  10. </template>
  11. <style lang="less" scoped>
  12. .project-title {
  13. margin: 50px;
  14. margin-bottom: 20px;
  15. h1 {
  16. font-size: 50px;
  17. font-weight: 100;
  18. text-align: center;
  19. }
  20. h3 {
  21. font-size: 20px;
  22. text-align: center;
  23. font-weight: 400;
  24. }
  25. }
  26. </style>