paulnicoue/components/AppHeader.vue
2023-01-11 15:16:55 +01:00

24 lines
361 B
Vue

<template>
<header>
<div class="header-bar">
</div>
</header>
</template>
<script setup>
</script>
<style lang="scss" scoped>
// --------------------------------------------------
// HEADER STYLE
// --------------------------------------------------
header {
width: 100%;
height: 0;
}
</style>