💄 Fix recent header alignment on profile layout

pull/2/head
James Panther 2021-08-25 16:25:45 +10:00
parent 589d3fb8a2
commit da03bddb62
No known key found for this signature in database
GPG Key ID: D36F789E45745D17
3 changed files with 6 additions and 5 deletions

View File

@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed ### Fixed
- Missing dark style for group subheadings on article listings - Missing dark style for group subheadings on article listings
- Fathom Analytics script included twice when using custom domain - Fathom Analytics script included twice when using custom domain
- Recent heading on homepage profile layout misaligned
## [1.2.0] - 2021-08-22 ## [1.2.0] - 2021-08-22
### Added ### Added

View File

@ -2432,6 +2432,10 @@ body a, body button {
color: var(--color-neutral-900); color: var(--color-neutral-900);
} }
.text-neutral-700 {
color: var(--color-neutral-700);
}
.text-neutral-800 { .text-neutral-800 {
color: var(--color-neutral-800); color: var(--color-neutral-800);
} }
@ -2448,10 +2452,6 @@ body a, body button {
color: var(--color-neutral-300); color: var(--color-neutral-300);
} }
.text-neutral-700 {
color: var(--color-neutral-700);
}
.text-primary-400 { .text-primary-400 {
color: var(--color-primary-400); color: var(--color-primary-400);
} }

View File

@ -16,6 +16,6 @@
</header> </header>
<section class="prose dark:prose-light">{{ .Content | emojify }}</section> <section class="prose dark:prose-light">{{ .Content | emojify }}</section>
</article> </article>
<section class="text-center"> <section>
{{ partial "recent-articles.html" . }} {{ partial "recent-articles.html" . }}
</section> </section>