Explorar el Código

Fix table overflow when there is long data that exceeds page width

Tim Lim hace 3 años
padre
commit
3e196ecec0
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      assets/stylesheets/global/_base.scss

+ 3 - 0
assets/stylesheets/global/_base.scss

@@ -134,6 +134,9 @@ table {
   border-collapse: separate;
   border-spacing: 0;
   border-radius: 3px;
+  display: inline-block;
+  overflow-x: auto;
+  max-width: 100%;
 }
 
 caption {