Skip to content

Commit 9a43f9f

Browse files
committed
Fix typo in the css classes
1 parent 6c24009 commit 9a43f9f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/theme/book.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ body {
3030
}
3131
@media only screen and (max-width: 1060px) {
3232
.sidebar {
33-
left: -$sidebar-width;
33+
left: -300px;
3434
}
3535
}
3636
.sidebar-hidden .sidebar {
3737
left: -300px;
3838
}
39-
.sidebar-visible . sidebar {
39+
.sidebar-visible .sidebar {
4040
left: 0;
4141
}
4242
.chapter {

src/theme/stylus/sidebar.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
transition: left 0.5s
1717

1818
@media only screen and (max-width: 1060px) {
19-
left: -$sidebar-width
19+
left: - $sidebar-width
2020
}
2121
}
2222

2323
.sidebar-hidden .sidebar {
2424
left: - $sidebar-width
2525
}
2626

27-
.sidebar-visible . sidebar {
27+
.sidebar-visible .sidebar {
2828
left: 0
2929
}
3030

0 commit comments

Comments
 (0)