Skip to content

Commit

Permalink
Improve spacing for unordered lists
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-lerch committed Jan 25, 2025
1 parent 81fc444 commit 7ce7c21
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions assets/css/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
.nuxt-content h2,
.nuxt-content h3,
.nuxt-content h4 {
@apply text-sogblue-dark font-light mt-8 mb-2;
@apply text-sogblue-dark font-light mt-8 mb-1;
}

.nuxt-content h1 {
Expand All @@ -56,7 +56,7 @@
}

.nuxt-content p {
@apply pt-2 pb-1;
@apply pt-3 pb-1;
}

/* Links */
Expand Down Expand Up @@ -101,12 +101,16 @@ table th {
}

/* Unordered Lists */
.nuxt-content ul {
@apply mt-1 mb-3;
}

.nuxt-content ul li {
@apply list-disc list-inside;
}

.nuxt-content ul li::marker {
@apply text-sogblue-dark text-2xl;
@apply text-sogblue-dark text-lg;
}

.nuxt-content ul ul li {
Expand Down

0 comments on commit 7ce7c21

Please sign in to comment.