Skip to content

Commit

Permalink
add new favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
Easybuoy committed Nov 9, 2019
1 parent 607d252 commit d4f971e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Characters/Character.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const Character = ({ characters, setCharacters }) => {
<tr>
<td></td>
<td></td>
<td>{`Total: ${totalHeight}cm (${calculateFeet(
<td className="total">{`Total: ${totalHeight}cm (${calculateFeet(
totalHeight
)}ft/${calculateInches(totalHeight)}in)`}</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Common/PreLoader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const StyledPreLoader = styled.div`
export default function PreLoader() {
return (
<StyledPreLoader>
<Pulse color="#000" size={20} />
<Pulse color="#f7e523" size={20} />
</StyledPreLoader>
);
}
3 changes: 2 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-color: #F1E9DA;
background-color: #595959;
/* background-color: #F1E9DA; */
}


Expand Down
4 changes: 4 additions & 0 deletions src/styles/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ const Character = styled.div`
.toggle {
cursor: pointer;
}
.total {
font-weight: bold;
}
}
.fl-table td,
Expand Down

0 comments on commit d4f971e

Please sign in to comment.