I have an issue. I have a couple of cards in my application. Now we want to give those cards a box-shadow but also merge them to a big card instead of having them separately. So 2 cards will look like 1, since they will be connected on one of their sides.
Every one of those cards are modules coming from the CMS and it is impossible to put them in a wrapper together. Otherwise I would create a parent div and give the box-shadow to this div.
Thus, the result is the following:
I would create a hack that targets the n-th element of the cards and remove its box-shadow from one side. But that is also impossible as the number of cards that are connected can be more than 2 depending on the step of the checkout.
Thus, the question that rises is: When u have adjacent cards, can you somehow remove the box-shadow from their connecting points with maybe simple CSS? I have been struggling with it the whole day.