diff --git a/src/app/globals.css b/src/app/globals.css index ca0cca7..7864bc1 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -9,6 +9,9 @@ .skeltonUi { @apply bg-[#f7f7f7] relative; } + .dropDownMenu { + @apply flex-1 text-b3 leading-b3 font-m text-[#7f7f7f] flex justify-start items-center px-[10px] cursor-pointer hover:text-[#333333]; + } } * { diff --git a/src/components/company/CompanyTitle.tsx b/src/components/company/CompanyTitle.tsx index a72e8d6..093ed3a 100644 --- a/src/components/company/CompanyTitle.tsx +++ b/src/components/company/CompanyTitle.tsx @@ -1,9 +1,8 @@ "use client"; -import Image from "next/image"; -import useMoadl from "@/hook/useModal"; -import { Icon } from "@team-return/design-system"; import { useDropDown } from "@/hook/useDropDown"; +import { Icon } from "@team-return/design-system"; +import Image from "next/image"; interface PropsType { business_number?: string; @@ -22,11 +21,8 @@ export default function CompanyTitle({ onClickInterview, children, }: PropsType) { - const { Modal, toggleModal, closeModal } = useMoadl(); const { DropDownComponent, toggleDropdown, closeDropDown } = useDropDown(); - const menuStyle = - "flex-1 text-b3 leading-b3 font-m text-[#7f7f7f] flex justify-start items-center px-[10px] cursor-pointer hover:text-[#333333]"; return (