Skip to content

Commit

Permalink
chore: 폰트 경로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
lsj0202 committed Sep 24, 2024
1 parent ee7d6bf commit 880532a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
17 changes: 12 additions & 5 deletions apps/client/src/app/project/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { IoPeople } from 'react-icons/io5';

const ProjectPage = () => {
return (
<Container className="py-10 min-h-[100vh] bg-gray-10">
<Container className="py-10 min-h-[100dvh] bg-gray-10">
<Wrapper>
<div className="flex gap-6 h-[400px] border-b pb-5">
<Image
Expand All @@ -27,10 +27,17 @@ const ProjectPage = () => {
<ProjectMemberList
includedMemberImageUrl={ProjectDetailMeta.includedMemberImageUrl}
/>
<Button height="h55">수정하기</Button>
<Button height="h55" bgColor="secondary">
모집 마감하기
</Button>
<div className="flex flex-col gap-2">
<div className="flex gap-2">
<Button height="h55">채팅방 가기</Button>
<Button height="h55" bgColor="gray">
수정하기
</Button>
</div>
<Button height="h55" bgColor="secondary">
모집 마감하기
</Button>
</div>
</div>
</div>
<div className="pt-12 flex flex-col gap-6">
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/app/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ProjectsPage = () => {
console.log(projectStatus, projectOptions); // 백엔드로 요청보낼때 사용될 코드

return (
<Container className="py-10 min-h-[100vh] bg-gray-10">
<Container className="py-10 min-h-[100dvh] bg-gray-10">
<Wrapper>
<div className="h-[40px] mb-5 flex items-center gap-[10px]">
<ProjectSelectBox
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/components/landing/interviewJJoing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type InterviewJJoingProps = {

const InterviewJJoing = ({ mouseRef }: InterviewJJoingProps) => {
return (
<Container className="h-[100vh] bg-white">
<Container className="h-[100dvh] bg-white">
<Wrapper
className="h-full flex flex-col items-center justify-center gap-8"
ref={mouseRef}
Expand Down
6 changes: 2 additions & 4 deletions apps/client/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ table {

@font-face {
font-family: 'Pretendard';
src:
url('/fonts/pretendard.woff2') format('woff2'),
url('/fonts/pretendard.woff') format('woff');
src: url('/fonts/Pretendard/Pretendard-Medium.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
Expand All @@ -144,7 +142,7 @@ table {
}

.content-container {
height: calc(100vh - 64px);
height: calc(100dvh - 64px);
}

@keyframes floatMouse {
Expand Down

0 comments on commit 880532a

Please sign in to comment.