diff --git a/components/editor/common/suneditor-contents.css b/components/editor/common/suneditor-contents.css index 846f7443f..b2d7c4c2f 100644 --- a/components/editor/common/suneditor-contents.css +++ b/components/editor/common/suneditor-contents.css @@ -15,7 +15,7 @@ font-size: 0.875rem; /* 수정됨 */ color: #262626; /* 수정됨 */ /* background-color: #fff; */ /* 수정됨 */ - line-height: 1.75; /* 수정됨 */ + line-height: 2; /* 수정됨 */ word-break: normal; word-wrap: break-word; /* padding: 16px; */ /* 수정됨 */ @@ -29,6 +29,7 @@ font-family: inherit; font-size: inherit; color: inherit; + line-height: 2; /* 수정됨 */ } /* RTL - editable */ diff --git a/components/layout/footer/Footer.tsx b/components/layout/footer/Footer.tsx index 7ea222189..1a122027f 100644 --- a/components/layout/footer/Footer.tsx +++ b/components/layout/footer/Footer.tsx @@ -25,16 +25,17 @@ import { import useModal from '@/hooks/useModal'; -import useFooterDesignMode, { FooterMode } from './useFooterToDesignMode'; +import useFooterDesignMode, { FooterMode } from './useFooterDesignMode'; export default function Footer() { const mode = useFooterDesignMode(); const topBg = mode === 'light' ? 'bg-neutral-50' : 'bg-neutral-900'; const bottomBg = mode === 'light' ? 'bg-neutral-100' : 'bg-[rgb(30,30,30)]'; + const borderTop = mode === 'light' ? 'border-neutral-100' : 'border-neutral-800'; return ( -