mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 00:35:47 +00:00
23 lines
360 B
CSS
23 lines
360 B
CSS
![]() |
@layer components {
|
||
|
.note-content {
|
||
|
& a {
|
||
|
@apply text-sm font-semibold text-pine-600 hover:underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.note-replies > * {
|
||
|
@apply relative;
|
||
|
|
||
|
& img {
|
||
|
@apply z-20;
|
||
|
}
|
||
|
|
||
|
&:not(:last-child)::before {
|
||
|
@apply absolute z-10 h-full bg-gray-300 top-8;
|
||
|
content: "";
|
||
|
left: 3rem;
|
||
|
width: 2px;
|
||
|
}
|
||
|
}
|
||
|
}
|