This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-02-06 cmp-adv-01-start.../src/components/layout/TheHeader.vue

22 lines
313 B
Vue
Raw Normal View History

2021-02-06 16:34:09 +01:00
<template>
<header>
<h1>More on Vue Components</h1>
</header>
</template>
2021-02-06 17:10:31 +01:00
<style scoped>
2021-02-06 16:34:09 +01:00
header {
width: 100%;
height: 5rem;
display: flex;
justify-content: center;
align-items: center;
background-color: #14005e;
}
header h1 {
color: white;
margin: 0;
}
</style>