From 7d732e0937a7a92ae8a8c4182e018d356d202ae8 Mon Sep 17 00:00:00 2001 From: Kevin Kopp Date: Thu, 24 Sep 2026 17:41:39 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20US01-02:=20Paketkarten=20laufen=20bei=20T?= =?UTF-8?q?ablet-Breite=20nicht=20mehr=20=C3=BCber?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/sections/angebote.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/css/sections/angebote.css b/css/sections/angebote.css index b8d8617..462b889 100644 --- a/css/sections/angebote.css +++ b/css/sections/angebote.css @@ -56,7 +56,7 @@ /* ---------- Paketkarten ---------- */ #angebote .package-grid { display: grid; - grid-template-columns: repeat(3, 1fr); + grid-template-columns: repeat(3, minmax(0, 1fr)); /* minmax(0,…) verhindert Überlaufen */ gap: 1.5rem; } @@ -358,6 +358,11 @@ #angebote .bonus-button { margin-left: 0; } } +/* ---------- schmale Tablets: 2 Karten nebeneinander ---------- */ +@media (max-width: 1000px) { + #angebote .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } +} + /* ---------- Mobil ---------- */ @media (max-width: 760px) { #angebote .angebote-heading { display: block; }