Fix typo in the css classes

This commit is contained in:
Mathieu David 2015-09-24 20:56:16 +02:00
parent 6c240090ae
commit 9a43f9ff8c
2 changed files with 4 additions and 4 deletions

View File

@ -30,13 +30,13 @@ body {
} }
@media only screen and (max-width: 1060px) { @media only screen and (max-width: 1060px) {
.sidebar { .sidebar {
left: -$sidebar-width; left: -300px;
} }
} }
.sidebar-hidden .sidebar { .sidebar-hidden .sidebar {
left: -300px; left: -300px;
} }
.sidebar-visible . sidebar { .sidebar-visible .sidebar {
left: 0; left: 0;
} }
.chapter { .chapter {

View File

@ -16,7 +16,7 @@
transition: left 0.5s transition: left 0.5s
@media only screen and (max-width: 1060px) { @media only screen and (max-width: 1060px) {
left: -$sidebar-width left: - $sidebar-width
} }
} }
@ -24,7 +24,7 @@
left: - $sidebar-width left: - $sidebar-width
} }
.sidebar-visible . sidebar { .sidebar-visible .sidebar {
left: 0 left: 0
} }