header.vue 384 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div>
  3. <Row class="header">
  4. <img src="../../assets/lili.png" class="logo" width="220px">
  5. </Row>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: "header",
  11. };
  12. </script>
  13. <style lang="scss" scoped>
  14. .header {
  15. margin-bottom: 6vh;
  16. align-items: center;
  17. display: flex;
  18. justify-content: center !important;
  19. }
  20. .logo {
  21. transform: scale(3);
  22. }
  23. </style>