mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00

- replace rollup config with vitejs - use vite dev server during development to take advantage of hot module replacement (HMR) - add vite service using Vite library to load css and js assets - update package.json scripts and remove unnecessary dependencies - update scripts/bundle-prepare.sh closes #107
23 lines
364 B
CSS
23 lines
364 B
CSS
@layer components {
|
|
.status-content {
|
|
& a {
|
|
@apply text-sm font-semibold text-pine-600 hover:underline;
|
|
}
|
|
}
|
|
|
|
.status-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;
|
|
}
|
|
}
|
|
}
|