Navbar.vue 404 B

12345678910111213141516171819202122232425
  1. <script setup>
  2. import { ref, reactive } from "vue";
  3. </script>
  4. <template>
  5. <div class="navbar">
  6. <img src="../assets/img/logo.svg" alt="" class="logo" />
  7. </div>
  8. </template>
  9. <style lang="scss" scoped>
  10. .navbar {
  11. height: 4rem;
  12. position: fixed;
  13. top: 0;
  14. right: 0;
  15. left: 0;
  16. z-index: 1000;
  17. padding: 10px 10px 5px;
  18. background-color: #ededef;
  19. .logo {
  20. max-width: 110px;
  21. }
  22. }
  23. </style>