button hover color
This commit is contained in:
parent
904c213d03
commit
f66478b9da
2 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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> */}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue