mirror of https://github.com/jpanther/congo.git
💄 Fix recent header alignment on profile layout
parent
589d3fb8a2
commit
da03bddb62
|
@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
### Fixed
|
||||
- Missing dark style for group subheadings on article listings
|
||||
- Fathom Analytics script included twice when using custom domain
|
||||
- Recent heading on homepage profile layout misaligned
|
||||
|
||||
## [1.2.0] - 2021-08-22
|
||||
### Added
|
||||
|
|
|
@ -2432,6 +2432,10 @@ body a, body button {
|
|||
color: var(--color-neutral-900);
|
||||
}
|
||||
|
||||
.text-neutral-700 {
|
||||
color: var(--color-neutral-700);
|
||||
}
|
||||
|
||||
.text-neutral-800 {
|
||||
color: var(--color-neutral-800);
|
||||
}
|
||||
|
@ -2448,10 +2452,6 @@ body a, body button {
|
|||
color: var(--color-neutral-300);
|
||||
}
|
||||
|
||||
.text-neutral-700 {
|
||||
color: var(--color-neutral-700);
|
||||
}
|
||||
|
||||
.text-primary-400 {
|
||||
color: var(--color-primary-400);
|
||||
}
|
||||
|
|
|
@ -16,6 +16,6 @@
|
|||
</header>
|
||||
<section class="prose dark:prose-light">{{ .Content | emojify }}</section>
|
||||
</article>
|
||||
<section class="text-center">
|
||||
<section>
|
||||
{{ partial "recent-articles.html" . }}
|
||||
</section>
|
||||
|
|
Loading…
Reference in New Issue