1234567891011121314151617181920212223242526272829 |
- <script setup lang="ts">
- </script>
- <template>
- <div class="project-title">
- <h1>Nginx UI</h1>
- <h3>
- {{ $gettext('Install') }}
- </h3>
- </div>
- </template>
- <style lang="less" scoped>
- .project-title {
- margin: 50px;
- margin-bottom: 20px;
- h1 {
- font-size: 50px;
- font-weight: 100;
- text-align: center;
- }
- h3 {
- font-size: 20px;
- text-align: center;
- font-weight: 400;
- }
- }
- </style>
|