33 lines
527 B
Vue
33 lines
527 B
Vue
|
<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>
|