officialWebsite/src/components/AppHeader.vue

33 lines
527 B
Vue
Raw Normal View History

2025-02-19 03:52:29 +00:00
<template>
<header className="header">
<div class="logo">
<img src="@/assets/image/logo.png" alt="logo" />
</div>
</header>
</template>
<style scoped lang="scss">
.header {
width: 100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: flex-end;
position: fixed;
z-index: 10;
top: 0;
left: 0;
right: 0;
padding: 0;
border-radius: 0;
background-color: transparent;
padding: 0 1rem;
}
.logo{
img{
width: 108px;
height: 33px;
}
}
</style>