cutelee

style: 버튼 스타일 수정

...@@ -22,4 +22,6 @@ npm-debug.log* ...@@ -22,4 +22,6 @@ npm-debug.log*
22 yarn-debug.log* 22 yarn-debug.log*
23 yarn-error.log* 23 yarn-error.log*
24 24
25 -.idea/
...\ No newline at end of file ...\ No newline at end of file
25 +.idea/
26 +
27 +package-lock.json
...\ No newline at end of file ...\ No newline at end of file
......
This diff could not be displayed because it is too large.
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
14 border-radius: 5px; 14 border-radius: 5px;
15 margin-right: 10px; 15 margin-right: 10px;
16 cursor: pointer; 16 cursor: pointer;
17 + padding: 0 10px;
17 18
18 &:focus { 19 &:focus {
19 outline: none; 20 outline: none;
......
...@@ -53,7 +53,7 @@ function EditorHeader({ editor, imageLoad }: EditorHeaderProps) { ...@@ -53,7 +53,7 @@ function EditorHeader({ editor, imageLoad }: EditorHeaderProps) {
53 <input type="file" accept="image/*" id="input-image-file" onChange={(e: ChangeEvent<HTMLInputElement>) => onLoadImage(e)}/> 53 <input type="file" accept="image/*" id="input-image-file" onChange={(e: ChangeEvent<HTMLInputElement>) => onLoadImage(e)}/>
54 </span> 54 </span>
55 55
56 - <button>URL 불러오기</button> 56 + <button>URL 로드</button>
57 </> 57 </>
58 )} 58 )}
59 59
......