added a little more spacing to some items and to the end of the page
All checks were successful
ci/woodpecker/deployment/woodpecker Pipeline was successful
ci/woodpecker/manual/woodpecker Pipeline was successful

This commit is contained in:
Cloudyy 2024-01-26 23:15:54 -03:00
parent ba369e2fa6
commit f3241ce1ae
Signed by: cloudyy
GPG key ID: 035104A645BAEADD
2 changed files with 7 additions and 3 deletions

View file

@ -22,7 +22,7 @@ import '../styles/markdown.css';
</head>
<body>
<Nav />
<div class="container mx-auto px-10">
<div class="container mx-auto mb-10 px-10">
<div class="markdown text-lg">
<slot />
</div>

View file

@ -17,11 +17,11 @@
}
.markdown ul {
@apply pl-4 list-disc list-inside;
@apply pl-4 mb-2 list-disc list-inside;
}
.markdown ol {
@apply pl-4 list-decimal list-inside;
@apply pl-4 mb-2 list-decimal list-inside;
}
.markdown img {
@ -51,3 +51,7 @@
.markdown .astro-code {
@apply p-4 rounded-md;
}
.markdown hr {
@apply my-4;
}