diff --git a/components/domains/Emoji/index.tsx b/components/domains/Emoji/index.tsx index 932d467..427f4e7 100644 --- a/components/domains/Emoji/index.tsx +++ b/components/domains/Emoji/index.tsx @@ -1,4 +1,5 @@ import { useRouter } from "next/router"; +import { css } from "@emotion/react"; import styled from "@emotion/styled"; import type { Variant } from "framer-motion"; import { motion } from "framer-motion"; @@ -22,7 +23,23 @@ const Emoji = () => { <> + ( - + ( @@ -331,7 +348,23 @@ const Actions = { ), Emoji, Chat: () => ( - + Toast.show(준비중입니다)} diff --git a/pages/rooms/create/mood/index.tsx b/pages/rooms/create/mood/index.tsx index e2638be..df2433e 100644 --- a/pages/rooms/create/mood/index.tsx +++ b/pages/rooms/create/mood/index.tsx @@ -1,4 +1,4 @@ -import React, { useEffect, useState } from "react"; +import React, { useState } from "react"; import type { NextPage } from "next"; import Image from "next/image"; import { useRouter } from "next/router"; @@ -8,7 +8,6 @@ import { BottomButton, Layout, Spacer, - Toast, TopBar, TopBarIconButton, } from "~/components/uis"; @@ -275,6 +274,16 @@ const S = { color: ${(p) => (p.isActive ? "#007AFF" : "white")}; border-radius: 20px; cursor: pointer; + transition: all 200ms; + + &:hover { + opacity: 0.85; + } + + &:disabled { + cursor: not-allowed; + filter: contrast(0.8); + } `, ButtonText: styled.p` font-size: 16px;