From 3b581c5fbdd4bc9c8b6cc061be34c8abeaa805d7 Mon Sep 17 00:00:00 2001 From: JAESUNG_PARK <131335554+FabPARKJAESUNG@users.noreply.github.com> Date: Tue, 27 Jun 2023 10:01:48 +0900 Subject: [PATCH] Fix(web): Modification by feedback : cursor --- web/src/beta/components/SettingsButtons/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/beta/components/SettingsButtons/index.tsx b/web/src/beta/components/SettingsButtons/index.tsx index f1dff8460b..20ede6385b 100644 --- a/web/src/beta/components/SettingsButtons/index.tsx +++ b/web/src/beta/components/SettingsButtons/index.tsx @@ -39,12 +39,14 @@ const Wrapper = styled.div` const StyledMainIcon = styled(Icon)` padding: 2px; + cursor: pointer; `; const StyledSubIcon = styled(Icon)` padding: 4px; justify-items: center; border-left: 0.5px solid ${props => props.theme.general.content.strong}; + cursor: pointer; `; export default SettingsButtons;