Skip to content

Commit 1e3d194

Browse files
authored
Merge pull request #14847 from TylerAPfledderer/feat/WalletSimulatorData-tailwind
[ShadCN]: migrate wallet simulator data object
2 parents 02bd0ee + d717abc commit 1e3d194

File tree

2 files changed

+150
-156
lines changed

2 files changed

+150
-156
lines changed

src/components/Simulator/Explanation.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { SimulatorNavProps } from "@/lib/types"
77
import { cn } from "@/lib/utils/cn"
88

99
import { Button, ButtonLink } from "../ui/buttons/Button"
10-
import { Flex } from "../ui/flex"
10+
import { Flex, Stack } from "../ui/flex"
1111

1212
import type {
1313
LabelHref,
@@ -86,7 +86,9 @@ export const Explanation = ({
8686
)}
8787
</div>
8888
</Flex>
89-
{description && <div className="max-md:hidden">{description}</div>}
89+
{description && (
90+
<Stack className="gap-4 max-md:hidden">{description}</Stack>
91+
)}
9092
{/* Last step navigation buttons */}
9193
{isLastStep && (
9294
<Flex className="z-[-1] mx-auto mt-4 w-full max-w-[300px] flex-col gap-4 md:mx-0">

0 commit comments

Comments
 (0)