From d434efd4f97cc2b28707f5022efbdab26447f9c7 Mon Sep 17 00:00:00 2001 From: Jay George Date: Fri, 19 Dec 2025 11:00:56 +0000 Subject: [PATCH] This fixes a missing the horizontal architecture line, which can be seen when creating on the "wizard screen" when a new collection is created --- resources/css/core/utilities.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/css/core/utilities.css b/resources/css/core/utilities.css index 221f5b30c1e..67922006492 100644 --- a/resources/css/core/utilities.css +++ b/resources/css/core/utilities.css @@ -270,7 +270,8 @@ position: absolute; inset: 0; height: var(--height); - border-image: conic-gradient(var(--line-color) 0 0) fill 0/ /**/0 100vw; + /* Bust out of the container to create a full-width horizontal line, ref https://www.smashingmagazine.com/2024/01/css-border-image-property/#full-width-backgrounds */ + border-image: conic-gradient(var(--line-color) 0 0) fill 0//0 100vw; top: calc(50% - var(--height)); } .dark &::after {