castopod/app/Resources/styles/post.css
Yassine Doghri bb4752c35e feat(comments): add comments to episodes + update naming of status to post
- 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
2021-12-29 11:54:22 +00:00

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;
}
}
}