Hiding edit icon of table builder for tablets and mobiles?

Here a CSS snippet you could use to hide the Edit Table button on mobile:

.mobile-view .fullscreen-table-wrapper:hover .fullscreen-table-wrapper__buttons .btn-edit-table {
  display: none;
  opacity:0;
}
3 Likes