From aa6992c0972193803c7e7e2b0a242b55f170ea13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=84=B1=EC=97=B4?= Date: Tue, 27 Feb 2024 15:50:00 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=ED=97=A4=EB=8D=94,=20=ED=91=B8?= =?UTF-8?q?=ED=84=B0,=20=EB=84=A4=EB=B9=84=20=EB=94=94=EC=9E=90=EC=9D=B8?= =?UTF-8?q?=20=EC=A0=81=EC=9A=A9=20(#139)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../editor/common/suneditor-contents.css | 3 +- components/layout/footer/Footer.tsx | 5 +- .../layout/footer/useFooterDesignMode.ts | 32 ++++++++++++ .../layout/footer/useFooterToDesignMode.ts | 12 ----- components/layout/header/Header.tsx | 2 +- components/layout/navbar/NavbarDetail.tsx | 24 ++++++--- components/layout/navbar/NavbarRoot.tsx | 22 ++++---- components/layout/navbar/NavtreeRow.tsx | 51 ++++++++++++++----- .../reservations/calendar/CalendarToolbar.tsx | 9 ++-- .../reservations/calendar/NavigateButtons.tsx | 2 +- styles/globals.css | 7 ++- 11 files changed, 115 insertions(+), 54 deletions(-) create mode 100644 components/layout/footer/useFooterDesignMode.ts delete mode 100644 components/layout/footer/useFooterToDesignMode.ts 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 ( -