Description of third-party cookies

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.

1675960394456.webp

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.

1675960624976.webp
 
Top Bottom