blob: ceb0d5abcf2a4234868c42e4c3fd30bbb3f295dc [file] [log] [blame]
Dave Barach8e83bcb2018-08-09 16:12:20 -04001/* Allows for tables to be center-aligned */
John DeNisco06dcd452018-07-26 12:45:10 -04002table.center-align-table td {
3 text-align: center;
4}
5
Dave Barach8e83bcb2018-08-09 16:12:20 -04006/* override table width restrictions */
7@media screen and (min-width: 767px) {
8
9 .wy-table-responsive table td {
10 /* !important prevents the common CSS stylesheets from overriding
11 this as on RTD they are loaded after this stylesheet */
12 white-space: normal !important;
13 }
14
15 .wy-table-responsive {
16 overflow: visible !important;
17 }
18}
John DeNisco06dcd452018-07-26 12:45:10 -040019