Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/components/common/NavigateHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ export default function NavigationHeader({
</button>

<div className="flex-1 text-center">
<div className={`text-title1 text-semiblod ${titleClassName ?? ""}`}>
<div
className={`text-title1 font-semibold text-black ${titleClassName ?? ""}`}
>
{title}
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -265,14 +265,14 @@
display: flex;
align-items: center;
padding: 10px 16px;
box-sizing: border-box;
width: 100%;
background: #ffffff;
}

@media (display-mode: standalone) {
.nav-header {
padding-top: calc(10px + env(safe-area-inset-top));
height: calc(60px + env(safe-area-inset-top));
padding-top: calc(10px + env(safe-area-inset-top));
}
}

Expand Down
4 changes: 2 additions & 2 deletions app/routes/mypage/components/profileCard/TraitModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ export default function TraitModal({

return (
<div
className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center px-4 py-5"
className="fixed inset-0 z-50 bg-black/40 flex items-center justify-center px-5 py-5"
onClick={onClose}
>
<div
className={[
"w-full max-w-[336px]",
"w-full",
"bg-[#F3F4F8] rounded-[13px]",
"relative",
].join(" ")}
Expand Down
Loading