It was no right place to do the change, it was a little bit higher in the file. I replaced:
Code:
.shoppingcart {
margin-left:auto;
display:grid;
grid-template-columns: 1fr auto;
min-height: 44px;
min-width: 44px;
position: relative;
align-content: end;
}
By this:
Code:
.shoppingcart {
margin-left:auto;
display:flex;
grid-template-columns: 1fr auto;
min-height: 44px;
min-width: 44px;
position: relative;
align-content: end;
}
And now I can insert icons for languages and currencies on one line in header.

Thanks!
Bookmarks