Mise en place de la page d'accueil et du changelog

This commit is contained in:
Pierre Martin
2021-03-19 20:20:48 +01:00
parent 7c64dcd6f4
commit b899d7db57
4 changed files with 205 additions and 11 deletions

View File

@@ -3,3 +3,21 @@
@tailwind components;
@tailwind utilities;
@layer base {
.markdown h2 {
@apply text-2xl mt-6 mb-3 text-gray-700 font-semibold;
}
.markdown h3 {
@apply text-xl mt-4 mb-2 text-gray-700;
}
.markdown p {
@apply my-2;
}
.markdown a {
@apply underline;
}
.markdown ul {
@apply list-disc list-outside ml-6;
}
}