paulnicoue/components/AppHeader.vue

25 lines
361 B
Vue
Raw Normal View History

2023-01-11 15:16:55 +01:00
<template>
<header>
<div class="header-bar">
</div>
</header>
</template>
<script setup>
</script>
<style lang="scss" scoped>
// --------------------------------------------------
// HEADER STYLE
// --------------------------------------------------
header {
width: 100%;
height: 0;
}
</style>