bootstrap defaults to a media query for 1200px
@media (min-width: 1200px) {
.col-lg-12 {
width: 100%;
}
...
...
...
}
how can I rewrite it as 1367px? I appended it later, but it has no effect. Because I am using a public cdn, I cannot modify it directly. I have to rewrite
.@media (min-width: 1367px) {
.col-lg-12 {
width: 100%;
}
...
...
...
}