fix: handle style when content viewport is narrow but window is wide

This commit is contained in:
EnixCoda 2019-08-12 20:40:46 +08:00
parent 9d50e1393b
commit 8d4def0584
No known key found for this signature in database
GPG key ID: 0C1A07377913A1DD

View file

@ -22,7 +22,12 @@
.Header {
max-width: 1012px;
margin: 0 auto;
overflow: auto;
}
}
@media (min-width: @github-content-width) {
body {
min-width: @github-content-width;
}
}