Skip to content

Commit

Permalink
Merge pull request #266 from fabianhug/fix-docs-darkmode-font
Browse files Browse the repository at this point in the history
fix: docs features darkmode color
  • Loading branch information
lalalune authored Nov 12, 2024
2 parents 616f1c4 + fcd2e31 commit 61cc988
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/src/components/HomepageFeatures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,15 @@ function Feature({ title, description }) {
<div className={clsx("col col--4")}>
<div className="card margin--md" style={{
height: "100%",
backgroundColor: "rgba(255, 255, 255, 0.9)",
backgroundColor: "var(--ifm-card-background-color)",
backdropFilter: "blur(10px)",
borderRadius: "12px",
color: "var(--ifm-font-color-base)",
}}>
<div className="card__body text--center padding--md">
<Heading as="h3">{title}</Heading>
<Heading as="h3" style={{
color: "var(--ifm-heading-color)"
}}>{title}</Heading>
<p>{description}</p>
</div>
</div>
Expand Down

0 comments on commit 61cc988

Please sign in to comment.