Skip to content

Commit ffc8ab3

Browse files
authored
[6.x] Fix architectural lines missing horizontal (#13387)
1 parent 7d34f2e commit ffc8ab3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

resources/css/core/utilities.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,8 @@
270270
position: absolute;
271271
inset: 0;
272272
height: var(--height);
273-
border-image: conic-gradient(var(--line-color) 0 0) fill 0/ /**/0 100vw;
273+
/* 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 */
274+
border-image: conic-gradient(var(--line-color) 0 0) fill 0//0 100vw;
274275
top: calc(50% - var(--height));
275276
}
276277
.dark &::after {

0 commit comments

Comments
 (0)