diff --git a/src/components/Comment/DisqusComments.tsx b/src/components/Comment/DisqusComments.tsx index aea1a38..dc437ee 100644 --- a/src/components/Comment/DisqusComments.tsx +++ b/src/components/Comment/DisqusComments.tsx @@ -1,5 +1,5 @@ -import { DiscussionEmbed } from "disqus-react"; import { css } from "@emotion/react"; +import { DiscussionEmbed } from "disqus-react"; import { useRouter } from "next/router"; const DisqusComments = (post) => { @@ -26,7 +26,4 @@ export default DisqusComments; const footer = css` overflow: hidden; - /* iframe { - margin-bottom: 0rem; - } */ `; diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx index a1d6a66..df73603 100644 --- a/src/components/Footer/index.tsx +++ b/src/components/Footer/index.tsx @@ -1,6 +1,6 @@ import { css, Theme } from "@emotion/react"; -import Inform from "components/Footer/Inform"; import GoLink from "components/Footer/GoLink"; +import Inform from "components/Footer/Inform"; function Footer() { return ( @@ -34,7 +34,7 @@ const wrapper = (theme: Theme) => css` width: 100%; height: 12rem; - color: #d5d8dd; + color: ${theme.color.grey500}; background-color: ${theme.color.grey100}; font-size: 13px; font-weight: ${theme.fontWeight.light}; diff --git a/src/components/Nav/BottomCategory.tsx b/src/components/Nav/BottomCategory.tsx index 0e20329..9092c9d 100644 --- a/src/components/Nav/BottomCategory.tsx +++ b/src/components/Nav/BottomCategory.tsx @@ -1,6 +1,6 @@ import { css } from "@emotion/react"; -import { useRouter } from "next/router"; import Link from "next/link"; +import { useRouter } from "next/router"; import { ReactNode } from "react"; interface Props { @@ -12,7 +12,7 @@ interface Props { function BottomCategory({ path, category, icon }: Props) { const router = useRouter(); const click = { - color: router.asPath === path ? "#000000" : "#888888", + color: router.asPath === path ? "#000000" : "#757575", fontWeight: router.asPath === path ? "700" : "500", }; return ( diff --git a/src/components/Nav/SearchBar.tsx b/src/components/Nav/SearchBar.tsx index 0e326fc..1c2ff3f 100644 --- a/src/components/Nav/SearchBar.tsx +++ b/src/components/Nav/SearchBar.tsx @@ -10,9 +10,14 @@ function SearchBar({ search, onChange }: Props) { return (
ํ๊ธฐํ์ด์ง