Skip to content

Commit

Permalink
dev(docs): Rename HoverCard to TiltCard
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAuro committed Jul 29, 2024
1 parent 6a18489 commit dd3487a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/src/components/Features/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
useMantineTheme,
darken,
} from "@mantine/core";
import { TiltCard } from "../HoverCard";
import { TiltCard } from "../TiltCard";

import { motion } from "framer-motion";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ export function TiltCard({
right: 0,
bottom: 0,
padding: "20px",
opacity: active ? 1 : 0,
transition: "opacity 0.5s",
}}
>
<Title order={4} ta="center" mt="sm">
Expand All @@ -153,6 +155,8 @@ export function TiltCard({
right: 0,
bottom: 0,
padding: "20px",
opacity: active ? 1 : 0,
transition: "opacity 0.5s",
}}
>
{" "}
Expand Down

0 comments on commit dd3487a

Please sign in to comment.