From c410fae2e95c33b85828d674fdaa2197d1c3db5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Gla=CC=88ser?= Date: Tue, 16 Jun 2026 18:43:52 +0200 Subject: [PATCH] Bestellungen-Drawer im Frontend sichtbar --- public/assets/styles.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/public/assets/styles.css b/public/assets/styles.css index 27707d2..9c86766 100644 --- a/public/assets/styles.css +++ b/public/assets/styles.css @@ -3137,6 +3137,21 @@ section + section { flex-direction: column; } +.sg-card-list-page-drawer-backdrop { + position: fixed; + inset: 0; + background: rgba(0, 0, 0, 0.45); + opacity: 0; + pointer-events: none; + transition: opacity 220ms ease; + z-index: 999; +} + +.sg-card-list-page-drawer-backdrop[data-open="true"] { + opacity: 1; + pointer-events: auto; +} + .sg-card-list-page-drawer { position: fixed; top: 0;