No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.vue 995B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <script setup>
  2. import { RouterView } from 'vue-router'
  3. </script>
  4. <template>
  5. <RouterView />
  6. </template>
  7. <style scoped>
  8. header {
  9. line-height: 1.5;
  10. max-height: 100vh;
  11. }
  12. .logo {
  13. display: block;
  14. margin: 0 auto 2rem;
  15. }
  16. nav {
  17. width: 100%;
  18. font-size: 12px;
  19. text-align: center;
  20. margin-top: 2rem;
  21. }
  22. nav a.router-link-exact-active {
  23. color: var(--color-text);
  24. }
  25. nav a.router-link-exact-active:hover {
  26. background-color: transparent;
  27. }
  28. nav a {
  29. display: inline-block;
  30. padding: 0 1rem;
  31. border-left: 1px solid var(--color-border);
  32. }
  33. nav a:first-of-type {
  34. border: 0;
  35. }
  36. @media (min-width: 1024px) {
  37. header {
  38. display: flex;
  39. place-items: center;
  40. padding-right: calc(var(--section-gap) / 2);
  41. }
  42. .logo {
  43. margin: 0 2rem 0 0;
  44. }
  45. header .wrapper {
  46. display: flex;
  47. place-items: flex-start;
  48. flex-wrap: wrap;
  49. }
  50. nav {
  51. text-align: left;
  52. margin-left: -1rem;
  53. font-size: 1rem;
  54. padding: 1rem 0;
  55. margin-top: 1rem;
  56. }
  57. }
  58. </style>