소스 검색

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

Tim Lim 3 년 전
부모
커밋
3e196ecec0
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  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 {