mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 10:15:46 +00:00

- remove confusing counts for episode (total favourites, total reblogs) - add comments section to episode page to display episode comments + post replies linked to the episode
23 lines
360 B
CSS
23 lines
360 B
CSS
@layer components {
|
|
.post-content {
|
|
& a {
|
|
@apply text-sm font-semibold text-pine-600 hover:underline;
|
|
}
|
|
}
|
|
|
|
.post-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;
|
|
}
|
|
}
|
|
}
|