You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we can't view the full table on mobile browsers.
Actually the table gets cut off since we cannot scroll left to view the remaining table content.
Any ideas/solutions to this?
The text was updated successfully, but these errors were encountered:
I know this post was over a year ago, but the way to solve this issue is to set a media query. In the regular view, in order to keep appearances, the table is set to have a nowrap. In mobile view, once you remove it, the table becomes responsive.
Add this to your custom css:
@media only screen and (max-width: 768px) {
table.flakes-table td {
white-space: normal;
}
}
Right now we can't view the full table on mobile browsers.
Actually the table gets cut off since we cannot scroll left to view the remaining table content.
Any ideas/solutions to this?
The text was updated successfully, but these errors were encountered: