diff --git a/client/src/components/auth/register.js b/client/src/components/auth/register.js index f21201a..75bfb2b 100644 --- a/client/src/components/auth/register.js +++ b/client/src/components/auth/register.js @@ -129,7 +129,7 @@ const register = () => { navigate('/card'); await regiseterUser(data); - notification('로그아웃', 'logout')(); + await notification('회원가입', 'register')(); }; const addInputForm = (fragment) => (input) => inputForm({ ...input, target: fragment })(); diff --git a/client/src/pages/MainPage.js b/client/src/pages/MainPage.js index 0f4b255..75c7aca 100644 --- a/client/src/pages/MainPage.js +++ b/client/src/pages/MainPage.js @@ -229,7 +229,7 @@ const navigateMain = async () => { MainPage.render(), addEvents, slider(), - // () => notification("logout", "logout")(), + //() => notification("logout", "logout")(), () => $.qsa('.mark-used-button'), makeUsedState, () => $.qs('.main-dropdown-button'), diff --git a/client/src/styles/common.scss b/client/src/styles/common.scss index 056e626..9060bbe 100644 --- a/client/src/styles/common.scss +++ b/client/src/styles/common.scss @@ -14,17 +14,17 @@ padding: 1.5rem 0; width: 100%; position: absolute; - bottom: calc(-50px - 3rem); + bottom: calc(-50px - 1.1rem); transition: transform 0.3s ease-in-out; z-index: 15; p { - font-size: calc(-50px - 3rem); + font-size: 1.5rem; text-align: center; } &.show { - transform: translateY(-50px); + transform: translateY(calc(-50px - 1.1rem)); } }