From 14979f300092e40119c9b7bfb07a70b2a5c655ff Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Thu, 10 Jul 2025 14:48:50 -0500 Subject: [PATCH] Adjust borders --- app/assets/stylesheets/trays.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/trays.css b/app/assets/stylesheets/trays.css index 5d8f86006..e7145f164 100644 --- a/app/assets/stylesheets/trays.css +++ b/app/assets/stylesheets/trays.css @@ -371,7 +371,7 @@ /* …add a border */ .tray__expander { border-inline-end: 1px dashed oklch(var(--lch-white) / 50%); - translate: calc(-1 * var(--tray-margin)) 0; + translate: calc(-1 * var(--tray-margin)) calc(-1 * env(safe-area-inset-bottom)); } /* …and disable the expander if there aren't items to show */ @@ -422,7 +422,7 @@ /* …add a border */ .tray__expander { border-inline-start: 1px dashed oklch(var(--lch-white) / 50%); - translate: var(--tray-margin) 0; + translate: var(--tray-margin) calc(-1 * env(safe-area-inset-bottom)); } /* …and hide the dialog if there aren't items to show */