SwissQr Clean Design

Hi @david

Here you wrote, that you made some changes to the Clean Design, so that the SwissQR is spread over the page width. Looks nice, thanks for that. A little thing: now the left part of the QR Bill is too wide (more than 62mm). Reason for that ist the following part in the css:

[data-element='product_table-product.description-td'], td {
    min-width:100%;
    max-width: 300px; /* this setting affecting the qr-bill td */
    overflow-wrap: break-word;
}

I solved it by adding the following css snippet right after your #qr-bill block:

#qr-bill td {
    max-width: none;
}

Maybe you would like to implement this as well (if it makes sense…)

Thx
Dominik

Thanks @checkitsedo

I’ve added this to the design!