Skip to content

Commit

Permalink
chore:#9 chore
Browse files Browse the repository at this point in the history
  • Loading branch information
frombozztoang committed Mar 15, 2024
1 parent 06e1f85 commit 206b6a0
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 26 deletions.
1 change: 0 additions & 1 deletion src/components/templates/login/main/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
"use client";
import Image from "next/image";
import React from "react";
import logo from "@public/icons/logo.png";
Expand Down
2 changes: 1 addition & 1 deletion src/components/templates/social/mainDetail/MainDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import BottomFixedBtn from "@/components/atoms/button/bottomFixed/BottomFixed";
import Letter from "@/components/atoms/letter/Letter";
import DetailProfile from "@/components/atoms/profile/detailProfile/DetailProfile";
import WriteModal from "@/components/organisms/modal/letter/writeModal/WriteModal";
import ModalView from "@/components/molecules/modal/ModalView";
import ModalView from "@/components/organisms/modal/ModalView";
import ModalPortal from "@/utils/ModalPortal";
import { AnimatePresence } from "framer-motion";
import useModal from "@/hooks/useModal";
Expand Down
32 changes: 16 additions & 16 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@
@tailwind components;
@tailwind utilities;

@import "../styles/variables.css";
@import '../styles/variables.css';

@font-face {
font-family: "NotoSansKR";
font-family: 'NotoSansKR';
font-weight: 400;
font-style: normal;
src: url("../../public/fonts/NotoSansKR-Regular.ttf") format("truetype");
src: url('../../public/fonts/NotoSansKR-Regular.ttf') format('truetype');
}

@font-face {
font-family: "NotoSansKR";
font-family: 'NotoSansKR';
font-weight: 500;
font-style: normal;
src: url("../../public/fonts/NotoSansKR-Medium.ttf") format("truetype");
src: url('../../public/fonts/NotoSansKR-Medium.ttf') format('truetype');
}

@font-face {
font-family: "NotoSansKR";
font-family: 'NotoSansKR';
font-weight: 700;
font-style: normal;
src: url("../../public/fonts/NotoSansKR-Bold.ttf") format("truetype");
src: url('../../public/fonts/NotoSansKR-Bold.ttf') format('truetype');
}

@font-face {
font-family: "GangwonEduSaeeum_OTFMediumA";
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduSaeeum_OTFMediumA.woff")
format("woff");
font-family: 'GangwonEduSaeeum_OTFMediumA';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduSaeeum_OTFMediumA.woff')
format('woff');
font-weight: normal;
font-style: normal;
}
Expand Down Expand Up @@ -107,39 +107,39 @@
}

.gangwon-xl {
font-family: "GangwonEduSaeeum_OTFMediumA";
font-family: 'GangwonEduSaeeum_OTFMediumA';
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 140% */
}

.gangwon-xl-under {
font-family: "GangwonEduSaeeum_OTFMediumA";
font-family: 'GangwonEduSaeeum_OTFMediumA';
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 12px;
}

.gangwon-large {
font-family: "GangwonEduSaeeum_OTFMediumA";
font-family: 'GangwonEduSaeeum_OTFMediumA';
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 144.444% */
}

.gangwon-medium {
font-family: "GangwonEduSaeeum_OTFMediumA";
font-family: 'GangwonEduSaeeum_OTFMediumA';
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 125% */
}

.gangwon-small {
font-family: "GangwonEduSaeeum_OTFMediumA";
font-family: 'GangwonEduSaeeum_OTFMediumA';
font-size: 14px;
font-style: normal;
font-weight: 400;
Expand All @@ -148,6 +148,6 @@
}

body {
font-family: "NotoSansKR";
font-family: 'NotoSansKR';
background-color: var(--main-background);
}
16 changes: 8 additions & 8 deletions src/types/Modal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export interface ModalViewProps extends HTMLAttributes<HTMLDivElement> {
handler: () => void;
};
}
export interface AuthModalProps {
authStatus: undefined | "proceeding" | "checking" | "failed" | "successed";
studentInfo?: {
name: string;
major: string;
studentId: string;
};
}
// export interface AuthModalProps {
// authStatus: undefined | "proceeding" | "checking" | "failed" | "successed";
// studentInfo?: {
// name: string;
// major: string;
// studentId: string;
// };
// }

0 comments on commit 206b6a0

Please sign in to comment.