mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 04:09:29 +02:00
28 lines
432 B
Vue
28 lines
432 B
Vue
<template>
|
|
<header class="header">
|
|
<div class="header__content">
|
|
<div class="header__logo">
|
|
<img src="../assets/logo.svg" alt="LuckyDiamond">
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Header-Element-page'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.header {
|
|
margin-left: 88px;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 1;
|
|
}
|
|
.header__content {
|
|
padding: 10px;
|
|
}
|
|
</style> |