Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
omariosouto committed Jan 29, 2021
1 parent fd5a253 commit 567f81a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 1 addition & 2 deletions db.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,13 @@
}
],
"external": [
"https://aluraquiz-base.alura-challenges.vercel.app/",
"https://aluraquiz-css.omariosouto.vercel.app/",
"https://aluraquiz-devsoutinho.omariosouto.vercel.app/"
],
"theme": {
"colors": {
"primary": "#222222",
"secondary": "#e8be3f",
"secondary": "#e89c3f",
"mainBg": "#213f4e",
"contrastText": "#FFFFFF",
"wrong": "#FF5722",
Expand Down
5 changes: 5 additions & 0 deletions src/components/Input/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ const InputBase = styled.input`
border-radius: ${({ theme }) => theme.borderRadius};
outline: 0;
margin-bottom: 25px;
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: ${({ theme }) => theme.colors.contrastText}DD;
opacity: 1; /* Firefox */
}
`;

export default function Input({ onChange, placeholder, ...props }) {
Expand Down

0 comments on commit 567f81a

Please sign in to comment.