fix(site): Antidote foot meta in sentence case; fold Suggest into foot row

This commit is contained in:
Paul Bakaus
2026-04-22 14:36:25 -07:00
parent 826c6cda05
commit e436ed53df
2 changed files with 18 additions and 9 deletions
+17 -5
View File
@@ -3734,7 +3734,6 @@
.antidote-foot {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: var(--spacing-lg);
padding-top: var(--spacing-md);
border-top: 1px solid var(--color-mist);
@@ -3742,11 +3741,24 @@
}
.antidote-foot-meta {
font-family: var(--font-mono);
font-size: 0.6875rem;
letter-spacing: 0.16em;
text-transform: uppercase;
flex: 1;
min-width: 0;
font-family: var(--font-body);
font-style: italic;
font-size: 0.875rem;
line-height: 1.55;
color: var(--color-charcoal);
}
.antidote-foot .antidote-suggest-link {
font-size: 0.8125rem;
color: var(--color-ash);
text-decoration: none;
white-space: nowrap;
}
.antidote-foot .antidote-suggest-link:hover {
color: var(--color-accent);
text-decoration: underline;
}
@media (max-width: 820px) {
+1 -4
View File
@@ -278,10 +278,7 @@
<div class="antidote-foot" data-reveal>
<a href="/anti-patterns" class="antidote-catalog-link">Browse all 25 anti-patterns &rarr;</a>
<span class="antidote-foot-meta">Detected by deterministic rules. Flagged by the LLM layer. Visualized in your browser.</span>
</div>
<div class="antidote-footer" data-reveal>
<span class="antidote-foot-meta">Detected by deterministic rules, flagged by the LLM layer, visualized in your browser.</span>
<a href="https://github.com/pbakaus/impeccable/issues/new?labels=pattern&title=Pattern%20suggestion%3A%20" class="antidote-suggest-link">Suggest a pattern &rarr;</a>
</div>
</div>