Skip to content

Commit

Permalink
chore: Resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
linhe0x0 committed Feb 15, 2020
2 parents ac434d5 + c7106b4 commit 6b61a2b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion Page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,15 @@ export default {
&__heading
width: 50%
padding: 4rem 3rem 0
padding: 0
overflow: auto
background-color: #fafafa
h1,
h2,
h3
padding: 4rem 3rem 0
&__body
display: flex
overflow-x: hidden
Expand Down
8 changes: 4 additions & 4 deletions components/Sidebar/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
]"
>
<div class="category__label">
<NavLink :to="sidebarGroupItem.to">{{
<NavLink class="sidebar-link" :to="sidebarGroupItem.to">{{
title(sidebarGroupItem.title || sidebarGroupOrder[index])
}}</NavLink>
</div>
Expand All @@ -42,7 +42,7 @@
]"
>
<div class="category__label">
<NavLink :to="`${sidebarGroupItem.to}#${header.slug}`">{{
<NavLink class="sidebar-link" :to="`${sidebarGroupItem.to}#${header.slug}`">{{
title(header.title)
}}</NavLink>
</div>
Expand All @@ -65,7 +65,7 @@
]"
>
<div class="category__label">
<NavLink :to="child.to">{{ title(child.title) }}</NavLink>
<NavLink class="sidebar-link" :to="child.to">{{ title(child.title) }}</NavLink>
</div>
<div
v-if="child.headers && child.headers.length"
Expand All @@ -79,7 +79,7 @@
]"
>
<div class="category__header-item">
<NavLink :to="`${child.to}#${header.slug}`">{{
<NavLink class="sidebar-link" :to="`${child.to}#${header.slug}`">{{
title(header.title)
}}</NavLink>
</div>
Expand Down

0 comments on commit 6b61a2b

Please sign in to comment.