1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-21 12:25:31 -04:00

fix unnoticeable background color bug in dark mode

This commit is contained in:
2022-02-05 14:50:29 -05:00
parent ca7d21b3d2
commit 42a7ff1bdc
26 changed files with 118 additions and 81 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import classNames from "classnames";
import type { BlockquoteHTMLAttributes } from "react";
import type { HTMLAttributes } from "react";
import styles from "./Blockquote.module.css";
type Props = BlockquoteHTMLAttributes<HTMLElement>;
type Props = HTMLAttributes<HTMLElement>;
const Blockquote = ({ className, ...rest }: Props) => (
<blockquote className={classNames(styles.blockquote, className)} {...rest} />