Skip to content

Commit

Permalink
[feat/#15] 🎨 Style: Change Check Icon Color
Browse files Browse the repository at this point in the history
  • Loading branch information
noooey committed Aug 3, 2023
1 parent 5f7548f commit e9f883a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import NavBar from './components/NavBar';
import Footer from './components/Footer';
import Home from './pages/Home';
import Auth from './pages/Auth';
import Auth2 from './pages/Auth2';
import Migration from './pages/Migration';
import Completed from './pages/Completed';
import NotFound from './pages/NotFound';
Expand All @@ -20,7 +19,6 @@ function App() {
<Routes>
<Route path="/" element={<Home />}></Route>
<Route path="/auth" element={<Auth />}></Route>
<Route path="/auth2" element={<Auth2 />}></Route>
<Route path="/migration" element={<Migration />}></Route>
<Route path="/completed" element={<Completed />}></Route>
{/* 상단에 위치하는 라우트들의 규칙을 모두 확인, 일치하는 라우트가 없는경우 처리 */}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const Auth = () => {
return (
<div key={index} style={idxStyle}>
<FiCheckCircle
color={(isFile || isNonEmptyString) ? "green" : "gray"}
color={(isFile || isNonEmptyString) ? "green" : "#dddddd"}
style={{ marginInline: '0.5rem'}}
/>
{item}
Expand Down

0 comments on commit e9f883a

Please sign in to comment.