Browse Source

Fix table escapes container at mobile

pull/1785/merge
jlukic 9 years ago
parent
commit
2a21019252
1 changed files with 4 additions and 2 deletions
  1. 6
      src/definitions/collections/table.less

6
src/definitions/collections/table.less

@ -151,13 +151,15 @@
/* Responsive */ /* Responsive */
@media only screen and (max-width : @largestMobileScreen) { @media only screen and (max-width : @largestMobileScreen) {
.ui.table:not(.unstackable),
.ui.table:not(.unstackable) {
width: 100%;
}
.ui.table:not(.unstackable) tbody, .ui.table:not(.unstackable) tbody,
.ui.table:not(.unstackable) tr, .ui.table:not(.unstackable) tr,
.ui.table:not(.unstackable) tr > th, .ui.table:not(.unstackable) tr > th,
.ui.table:not(.unstackable) tr > td { .ui.table:not(.unstackable) tr > td {
display: block !important; display: block !important;
width: 100% !important;
width: auto !important;
display: block !important; display: block !important;
} }

Loading…
Cancel
Save