Höhe der Elemente in der Reihe angleichen

This commit is contained in:
Dennis Heinrich 2025-04-10 20:25:20 +02:00
parent 8612acbf1e
commit 16c9cc1f8a

View file

@ -71,7 +71,7 @@
*/ */
.product-list { .product-list {
display: grid; display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 4fr)); grid-template-columns: repeat(auto-fill, minmax(140px, 4fr));
gap: .4em; gap: .4em;
padding-bottom: 1em; padding-bottom: 1em;
@ -93,7 +93,10 @@
-khtml-user-drag: none; -khtml-user-drag: none;
user-drag: none; user-drag: none;
} }
/* Make the product box responsive */
.card {
height: 100%;
}
/* Break the words on the card body */ /* Break the words on the card body */
.card-body span { .card-body span {
word-wrap: break-word; word-wrap: break-word;