Skip to content

Commit

Permalink
change outline focus colours to grey,
Browse files Browse the repository at this point in the history
Relates #148
  • Loading branch information
sima-qian committed Oct 18, 2018
1 parent a0b9e40 commit 9b32fb5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/components/Pages/AddNew/AddNewContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const StyledInput = styled.input`
}
:focus {
outline-color: #009f5c;
outline-color: #c7c7b2;
}
`;

Expand All @@ -51,7 +51,7 @@ const StyledButton = styled.input`
font-size: 32px;
:focus {
outline-color: #009f5c;
outline-color: #c7c7b2;
}
`;

Expand Down
1 change: 0 additions & 1 deletion src/components/Pages/AddNew/InstructionText.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const StyledInstructionH2 = styled.h2`
font-family: "Roboto", Helvetica, sans-serif;
font-weight: 700;
margin: 0 16px 16px 16px;
// border: solid black 2px;
`;

export default class InstructionText extends React.Component {
Expand Down
7 changes: 3 additions & 4 deletions src/components/Pages/AddNew/NewTileTextInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ const NewTileTextInputElement = styled.input`
text-transform: uppercase;
line-height: 1.2;
letter-spacing: 1px;
outline: none;
`;
const NewTileTextInputSubmit = styled.input`
background-color: green;
:focus {
outline-color: #c7c7b2;
}
`;

export default class NewTileTextInput extends React.Component {
Expand Down

0 comments on commit 9b32fb5

Please sign in to comment.