give solid white background to sidebar

This commit is contained in:
Frédéric Péters 2018-08-21 07:47:37 +02:00
parent c1f6b6f788
commit 5cad10dc82
1 changed files with 11 additions and 1 deletions

View File

@ -382,8 +382,11 @@ div#main-content {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
margin-left: 1rem;
margin-right: 1rem;
margin-right: 0;
width: 22rem;
box-sizing: border-box;
padding: 0 1rem;
background: white;
max-width: 22rem;
@media screen and (max-width: $mobile-limit) {
width: auto;
@ -391,6 +394,13 @@ div#main-content {
}
color: #666;
position: relative;
#sidebar-toggle {
left: -15px;
width: 15px;
background: #d4cbff;
border-bottom-right-radius: 0px;
border-bottom-left-radius: 10px;
}
}