123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <script setup lang="ts">
- import { RouterView } from 'vue-router'
- </script>
- <template>
- <div class="app">
- <RouterView />
- </div>
- </template>
- <style scoped>
- header {
- line-height: 1.5;
- max-height: 100vh;
- }
- .logo {
- display: block;
- margin: 0 auto 2rem;
- }
- nav {
- width: 100%;
- font-size: 12px;
- text-align: center;
- margin-top: 2rem;
- }
- nav a.router-link-exact-active {
- color: var(--color-text);
- }
- nav a.router-link-exact-active:hover {
- background-color: transparent;
- }
- nav a {
- display: inline-block;
- padding: 0 1rem;
- border-left: 1px solid var(--color-border);
- }
- nav a:first-of-type {
- border: 0;
- }
- </style>
|