style: do not let sidebar change width (#23493)

This commit is contained in:
Frédéric Péters 2018-04-29 13:55:27 +02:00
parent 2724b9498a
commit 1832654625
1 changed files with 6 additions and 6 deletions

View File

@ -291,8 +291,8 @@ div.errornotice {
}
div#main-content {
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
width: 100%;
margin-left: 0;
padding: 1em 6px 0 16px;
@ -309,12 +309,12 @@ div#main-content {
}
#sidebar {
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
margin-left: 1rem;
margin-right: 1rem;
width: 30rem;
max-width: 30rem;
width: 23rem;
max-width: 23rem;
color: #666;
position: relative;
}