comicbox/styles/globals.css

16 lines
274 B
CSS
Executable file

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-800 text-gray-200;
}
}
@layer components {
.dots-between > li:not(:last-child):not(.no-dot)::after {
content: '⦁';
padding: 0 8px;
}
}