size tweaks

Signed-off-by: Ash Entwisle <ash.entwisle@protonmail.com>
issue/index
Ash Entwisle 2023-09-19 04:12:15 +00:00
parent f7ebc9b217
commit 42abdf5eff
No known key found for this signature in database
GPG Key ID: 0E3CBB6B4BE9FE33
2 changed files with 5 additions and 9 deletions

View File

@ -8,7 +8,7 @@ const { code } = Astro.props;
<div class="flex items-center justify-center flex-col">
<div class="w-3/4">
<h1 class="text-6xl font-bold m-250">Error: { code }</h1>
<h1 class="text-5xl font-bold m-250">Error: { code }</h1>
<slot />
</div>
</div>

View File

@ -54,28 +54,28 @@ markdown {
h1 {
margin: 10px;
@apply text-4xl;
@apply text-3xl;
@apply font-bold;
}
h2 {
margin: 10px;
@apply text-3xl;
@apply text-2xl;
@apply font-bold;
}
h3 {
margin: 10px;
@apply text-2xl;
@apply text-xl;
@apply font-bold;
}
h4 {
margin: 10px;
@apply text-xl;
@apply text-lg;
@apply font-bold;
}
@ -84,7 +84,6 @@ markdown {
margin-top: 25px;
margin-bottom: 25px;
@apply text-lg;
}
ul {
@ -92,7 +91,6 @@ markdown {
margin-top: 10px;
margin-bottom: 10px;
@apply text-lg;
}
ol {
@ -100,7 +98,6 @@ markdown {
margin-top: 10px;
margin-bottom: 10px;
@apply text-lg;
}
li {
@ -111,7 +108,6 @@ markdown {
list-style-type: disc;
@apply text-lg;
}
}