We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83baee3 commit 5d94943Copy full SHA for 5d94943
src/components/Timeline.astro
@@ -37,7 +37,13 @@ const displayTriangle = shortSpine ? "none" : "absolute";
37
position: absolute;
38
left: 50%;
39
transform: translateX(-50%);
40
- background-color: var(--color-primary);
+ background: linear-gradient(
41
+ to bottom,
42
+ var(--color-primary) 0.4rem,
43
+ transparent 0.4rem,
44
+ transparent 0.55rem,
45
+ var(--color-primary) 0.55rem
46
+ );
47
z-index: 3; /* above potential dividers */
48
}
49
0 commit comments