Fix bootstrap 3 support for modern high res monitors

pull/501/head
Haocen Xu 2019-08-20 11:57:22 -04:00
parent 6a79519641
commit 649c7aaa78
No known key found for this signature in database
GPG Key ID: 3F0D955A0F6AD729
1 changed files with 9 additions and 0 deletions

View File

@ -171,3 +171,12 @@ li.L0, li.L1, li.L2, li.L3, li.L5, li.L6, li.L7, li.L8 {
.dark-theme .alert-info .alert-link {
color: #fff;
}
/* address 2K or 4K monitors when using bootstrap 3 */
@media (min-width: 1280px) {
.container {
width: 100%;
padding-left: 4ch;
padding-right: 4ch;
}
}