We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02bd0ee + d717abc commit 1e3d194Copy full SHA for 1e3d194
src/components/Simulator/Explanation.tsx
@@ -7,7 +7,7 @@ import type { SimulatorNavProps } from "@/lib/types"
7
import { cn } from "@/lib/utils/cn"
8
9
import { Button, ButtonLink } from "../ui/buttons/Button"
10
-import { Flex } from "../ui/flex"
+import { Flex, Stack } from "../ui/flex"
11
12
import type {
13
LabelHref,
@@ -86,7 +86,9 @@ export const Explanation = ({
86
)}
87
</div>
88
</Flex>
89
- {description && <div className="max-md:hidden">{description}</div>}
+ {description && (
90
+ <Stack className="gap-4 max-md:hidden">{description}</Stack>
91
+ )}
92
{/* Last step navigation buttons */}
93
{isLastStep && (
94
<Flex className="z-[-1] mx-auto mt-4 w-full max-w-[300px] flex-col gap-4 md:mx-0">
0 commit comments