soloarquitectura Well-known member Dec 2, 2022 #1 Affected version 2.2.12 Displayed incorrectly on mobile devices, as can be seen in the image.
digitalpoint Well-known member Feb 9, 2023 #2 it has to do with the cells having display:flex; if they have a "cell label", which effectively splits it into 4 items within that flex area (the <a /> anchor is what splits it. Code: .dataList-cell { display: block; width: auto; &[data-cell-label] { display: flex; If you give the anchor tag display: content; CSS, it works itself out, although I'm not sure if it impacts other areas negatively.
it has to do with the cells having display:flex; if they have a "cell label", which effectively splits it into 4 items within that flex area (the <a /> anchor is what splits it. Code: .dataList-cell { display: block; width: auto; &[data-cell-label] { display: flex; If you give the anchor tag display: content; CSS, it works itself out, although I'm not sure if it impacts other areas negatively.