Skip to content

Commit

Permalink
merge(task): Format task list
Browse files Browse the repository at this point in the history
Format task list
  • Loading branch information
bikingbadger authored Mar 1, 2021
2 parents 149fcdf + 9d5928d commit 999c81a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
6 changes: 2 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<template>
<the-header/>
<Panel class="m-auto ">
<router-view />
</Panel>
<the-header />
<router-view />
</template>

<script>
Expand Down
4 changes: 2 additions & 2 deletions src/components/ui/TheHeader.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<template>
<Menubar :model="items">
<template #start>
<h1>Pompom</h1>
<!-- <img alt="logo" src="../../assets/images/logo.svg" height="40" class="p-mr-2" /> -->
</template>
<template #end>
Expand Down Expand Up @@ -66,10 +65,11 @@ export default {
.p-menubar {
position: sticky;
top: 0;
background-color: #3f51b5;
color: white;
}
.p-menubar-end {
display: flex;
}
</style>
10 changes: 8 additions & 2 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<template>
<div class="home">
<Panel class="home">
<h1 class="p-text-center p-text-uppercase">Pompom</h1>
<task-list></task-list>
</div>
</Panel>
</template>

<script>
Expand All @@ -18,4 +19,9 @@ export default {
width: 66vw;
margin: 0 auto;
}
h1 {
color: #3f51b5;
font-size: 3rem;
}
</style>

0 comments on commit 999c81a

Please sign in to comment.