Răsfoiți Sursa

Fix for bootstrap screen width bug

992px-1200px
leram84 7 ani în urmă
părinte
comite
bae55804e0
1 a modificat fișierele cu 11 adăugiri și 1 ștergeri
  1. 11 1
      css/organizr.css

+ 11 - 1
css/organizr.css

@@ -1273,6 +1273,16 @@ span.fc-title {
     -webkit-transition: all .4s ease;
     transition: all .4s ease;
 }
+/* Fix for bootstrap screen width bug */
+@media (min-width: 992px) and (max-width: 1200px) {
+    .col-lg-12 {
+        float: left;
+        width: 100%;
+    }
+    .col-md-12 {
+        float: none;
+    }
+}
 /*
 body,
 html {
@@ -1290,4 +1300,4 @@ html {
 .internal-listing .simplebar-track.horizontal {
     display: none;
 }
-*/
+*/