* maybe use biome * import organising * Removed unused new fmt commands; fix to not use linter * Don't use fmt:generated - fmt is fast, but also use Makefile for this sort of thing --------- Co-authored-by: lee-at-zoo-corp <lee@zoo.dev>
17 lines
276 B
CSS
17 lines
276 B
CSS
.folder {
|
|
position: relative;
|
|
}
|
|
|
|
.folder::after {
|
|
content: "";
|
|
width: 1px;
|
|
z-index: -1;
|
|
@apply absolute top-0 bottom-0;
|
|
left: calc(var(--indent-line-left, 1rem) + 0.25rem);
|
|
@apply bg-chalkboard-30;
|
|
}
|
|
|
|
:global(.dark) .folder::after {
|
|
@apply bg-chalkboard-80;
|
|
}
|