button hover color

This commit is contained in:
Jade (Rose) Rowland 2025-02-24 22:15:38 -05:00
parent 904c213d03
commit f66478b9da
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ function IncButton({ children, className, ...buttonProps }) {
<button
tabIndex={-1}
className={cx(
'border border-transparent p-1 text-center text-sm transition-all hover:bg-foreground active:bg-lineBackground disabled:pointer-events-none disabled:opacity-50 disabled:shadow-none',
'border border-transparent p-1 text-center hover:text-background text-sm transition-all hover:bg-foreground active:bg-lineBackground disabled:pointer-events-none disabled:opacity-50 disabled:shadow-none',
className,
)}
type="button"

View File

@ -62,7 +62,7 @@ export function Reference() {
<h3 id={`doc-${i}`}>{entry.name}</h3>
{!!entry.synonyms_text && (
<p>
Synonyms: <code className="text-foreground">{entry.synonyms_text}</code>
Synonyms: <code>{entry.synonyms_text}</code>
</p>
)}
{/* <small>{entry.meta.filename}</small> */}