Skip to content

Commit

Permalink
disable dark mode (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-support authored Aug 15, 2024
1 parent a793000 commit 83febc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fern/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ no-image-zoom: true
</style>

export const LandingPageCard = ({ href, title, imgSrc, description }) => (
<div className="rounded-lg bg-[#F5F4F2] dark:bg-[#0F0F0F] px-6 py-5 hover:bg-[#E9E6DE] dark:hover:bg-[#292929] md:p-8">
<div className="rounded-lg bg-[#F5F4F2] px-6 py-5 hover:bg-[#E9E6DE] md:p-8">
<a
href={href}
target="_self"
Expand All @@ -37,7 +37,7 @@ export const LandingPageCard = ({ href, title, imgSrc, description }) => (
<img src={imgSrc} alt={title} />
<p className="p-lg">{description}</p>
</div>
<div className="mt-2 text-sm text-[#2D4CB9] dark:text-[#4C6EE6] md:mt-0 md:self-end">
<div className="mt-2 text-sm text-[#2D4CB9] md:mt-0 md:self-end">
{"GET STARTED"}
<div className="ml-2 inline-block group-hover:no-underline">
<svg
Expand All @@ -62,7 +62,7 @@ export const LandingPageCard = ({ href, title, imgSrc, description }) => (
export const EndpointLink = ({ href, title }) => (
<a
href={href}
className="group flex cursor-pointer flex-row text-sm !font-normal text-[#2D4CB9] dark:text-[#4C6EE6]"
className="group flex cursor-pointer flex-row text-sm !font-normal text-[#2D4CB9]"
rel="noreferrer"
target="_self"
>
Expand Down

0 comments on commit 83febc9

Please sign in to comment.