Skip to content

Instantly share code, notes, and snippets.

@suzdalnitski
Created September 3, 2018 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzdalnitski/e485984048867b4f0631766cf9240cc3 to your computer and use it in GitHub Desktop.
Save suzdalnitski/e485984048867b4f0631766cf9240cc3 to your computer and use it in GitHub Desktop.
// style.js:
const style = {
form: {
margin: 50,
padding: 10,
width: 300,
border: "1px solid black",
backgroundColor: "black",
color: "white"
},
inputGroup: {
marginBottom: 10
},
input: {
backgroundColor: "#EFEFFF",
marginLeft: 10
},
error: {
color: "red",
margin: 5
}
};
export default style;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment