Skip to content

Commit 6b61a2b

Browse files
author
sqrtthree
committed
chore: Resolve conflicts
2 parents ac434d5 + c7106b4 commit 6b61a2b

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

Page.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,15 @@ export default {
266266
267267
&__heading
268268
width: 50%
269-
padding: 4rem 3rem 0
269+
padding: 0
270270
overflow: auto
271271
background-color: #fafafa
272272
273+
h1,
274+
h2,
275+
h3
276+
padding: 4rem 3rem 0
277+
273278
&__body
274279
display: flex
275280
overflow-x: hidden

components/Sidebar/index.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
]"
2121
>
2222
<div class="category__label">
23-
<NavLink :to="sidebarGroupItem.to">{{
23+
<NavLink class="sidebar-link" :to="sidebarGroupItem.to">{{
2424
title(sidebarGroupItem.title || sidebarGroupOrder[index])
2525
}}</NavLink>
2626
</div>
@@ -42,7 +42,7 @@
4242
]"
4343
>
4444
<div class="category__label">
45-
<NavLink :to="`${sidebarGroupItem.to}#${header.slug}`">{{
45+
<NavLink class="sidebar-link" :to="`${sidebarGroupItem.to}#${header.slug}`">{{
4646
title(header.title)
4747
}}</NavLink>
4848
</div>
@@ -65,7 +65,7 @@
6565
]"
6666
>
6767
<div class="category__label">
68-
<NavLink :to="child.to">{{ title(child.title) }}</NavLink>
68+
<NavLink class="sidebar-link" :to="child.to">{{ title(child.title) }}</NavLink>
6969
</div>
7070
<div
7171
v-if="child.headers && child.headers.length"
@@ -79,7 +79,7 @@
7979
]"
8080
>
8181
<div class="category__header-item">
82-
<NavLink :to="`${child.to}#${header.slug}`">{{
82+
<NavLink class="sidebar-link" :to="`${child.to}#${header.slug}`">{{
8383
title(header.title)
8484
}}</NavLink>
8585
</div>

0 commit comments

Comments
 (0)