We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5dac018 + c8451e8 commit 1eed66fCopy full SHA for 1eed66f
2 files changed
src/pages/MyPage/ButtonSecondary/index.tsx
@@ -8,7 +8,7 @@ const ButtonSecondary: React.FC = () => {
8
const navigate = useNavigate();
9
10
const handleClick = () => {
11
- navigate('/profile/edit'); // 경로 수정했음
+ navigate('/profile/edit');
12
};
13
14
return (
src/pages/MyPage/ButtonSecondary/styles.tsx
@@ -2,15 +2,14 @@ import styled from 'styled-components';
2
3
export const Button = styled.button`
4
width: 100%;
5
- padding: 6px;
6
margin: 1.25rem auto;
7
- height: 3.1rem; /* 44px */
+ height: 3.1rem;
text-align: center;
color: #ff2389;
cursor: pointer;
box-sizing: border-box;
border: 1px solid;
border-radius: 10px;
border-color: #ff2389;
15
- padding: 10px; /* 텍스트가 보더와 겹치지 않게 패딩 설정 */
+ padding: 10px;
16
`;
0 commit comments