Skip to content

Instantly share code, notes, and snippets.

@JoshK2
Last active September 5, 2019 13:19
Show Gist options
  • Save JoshK2/d2f98cfeb79a8c2a6fd3780902f50427 to your computer and use it in GitHub Desktop.
Save JoshK2/d2f98cfeb79a8c2a6fd3780902f50427 to your computer and use it in GitHub Desktop.
Create React typescript components library - simple button style
button {
width: auto;
height: auto;
padding: 4px 8px;
background-color: white;
border: 2px solid #f9a2b1;
border-radius: 3px;
font-size: 16px;
cursor: pointer;
color: black;
outline: none;
&:hover {
background-color: pink;
color: #fafafa;
}
&.disable {
background-color: #afaaaa;
border: 2px solid #dedddd;
opacity: 0.7;
cursor: unset;
&:hover {
background-color: #afaaaa;
color: black;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment