이준호

[FIXED] env 파일 gitignore 처리

...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
13 13
14 # misc 14 # misc
15 .DS_Store 15 .DS_Store
16 +.env
16 .env.local 17 .env.local
17 .env.development.local 18 .env.development.local
18 .env.test.local 19 .env.test.local
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
27 "web-vitals": "^0.2.4" 27 "web-vitals": "^0.2.4"
28 }, 28 },
29 "scripts": { 29 "scripts": {
30 - "start": "react-scripts start", 30 + "start": "react-scripts start .env",
31 "build": "react-scripts build", 31 "build": "react-scripts build",
32 "test": "react-scripts test", 32 "test": "react-scripts test",
33 "eject": "react-scripts eject" 33 "eject": "react-scripts eject"
......
1 #kakao-link-btn{ 1 #kakao-link-btn{
2 + cursor: pointer;
2 display: flex; 3 display: flex;
3 justify-content: center; 4 justify-content: center;
4 align-items: center; 5 align-items: center;
...@@ -11,6 +12,11 @@ ...@@ -11,6 +12,11 @@
11 height: 5rem; 12 height: 5rem;
12 font-size: 1.2rem; 13 font-size: 1.2rem;
13 font-weight: bold; 14 font-weight: bold;
15 + transform: background-color;
16 + transition: ease-out 0.3s;
17 + &:hover{
18 + filter: brightness(105%);
19 + }
14 img{ 20 img{
15 width: 2rem; 21 width: 2rem;
16 height: auto; 22 height: auto;
......