comicbox/styles/globals.css

17 lines
261 B
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
2022-07-19 20:32:51 +00:00
@layer base {
body {
@apply bg-gray-800 text-gray-200;
}
2022-07-19 20:32:51 +00:00
}
2022-07-27 20:56:32 +00:00
@layer components {
.dots-between > li:not(:last-child)::after {
2022-07-27 21:10:23 +00:00
content: '⦁';
2022-07-27 20:56:32 +00:00
padding: 0 8px;
}
}