Fix nested bullets
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 23s

This commit is contained in:
thepaperpilot 2024-06-06 00:00:23 -05:00
parent 3d96a81f8d
commit 00217e8e69

View file

@ -25,3 +25,17 @@
margin: auto;
width: unset;
}
ul > li > ul {
position: relative;
}
ul > li > ul::before {
position: absolute;
content: "";
width: 2px;
height: 100%;
background: var(--vp-c-text-1);
opacity: 0.3;
left: -16px;
}