michalvankodev-site/axum_server/styles/input.css

21 lines
320 B
CSS
Raw Normal View History

2024-02-22 20:13:23 +01:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-03-02 13:12:55 +01:00
@layer base {
.article-body {
h1 {
@apply px-4 text-2xl text-blue-900 my-2;
}
h2 {
@apply px-4 text-xl text-blue-900 my-2;
}
p {
@apply px-4 my-2;
}
pre {
@apply p-4 my-1 overflow-auto text-sm;
}
}
}