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.
1 parent 9bf16d1 commit 596f4a1Copy full SHA for 596f4a1
src/routes/mission/-components/MissionLockCard.tsx
@@ -1,9 +1,10 @@
1
import assetMissionIcon from "@/assets/images/ic_lock.png";
2
import assetMissionLock from "@/assets/images/ic_lock_image.png";
3
+import { cn } from "@/utils/cn";
4
5
export default function MissionLockCard() {
6
return (
- <div className="card-container">
7
+ <div className={cn("card-container", "max-w-[380px]")}>
8
<div className="relative w-full h-full rounded-[32px]">
9
<div className="h-full flex flex-col items-center justify-center gap-2 relative z-1 bg-neutral-400 rounded-[32px]">
10
<img
0 commit comments