lesson 127: move TheHeader

This commit is contained in:
Andreas Zweili 2021-02-08 14:30:07 +01:00
parent 332024563d
commit 0be7e38135
2 changed files with 25 additions and 11 deletions

View File

@ -1,11 +0,0 @@
<template>
<header>
<h1>One big application</h1>
</header>
</template>
<script>
export default {};
</script>
<style></style>

View File

@ -0,0 +1,25 @@
<template>
<header>
<h1>One big application</h1>
</header>
</template>
<script>
export default {};
</script>
<style scoped>
header {
width: 100%;
height: 5rem;
background-color: #640032;
display: flex;
justify-content: center;
align-items: center;
}
header h1 {
color: white;
margin: 0;
}
</style>