mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-25 03:22:01 +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
21 lines
312 B
CSS
21 lines
312 B
CSS
.breadcrumb {
|
|
@apply inline-flex flex-wrap px-1 py-2 text-sm;
|
|
}
|
|
|
|
.breadcrumb-item + .breadcrumb-item::before {
|
|
@apply inline-block px-1 text-gray-500;
|
|
content: "/";
|
|
}
|
|
|
|
.breadcrumb-item a {
|
|
@apply no-underline;
|
|
|
|
&:hover {
|
|
@apply underline;
|
|
}
|
|
}
|
|
|
|
.breadcrumb-item.active {
|
|
@apply font-semibold;
|
|
}
|